2014-09-04 09:07:35 +01:00
|
|
|
// CS0837: The `is' operator cannot be applied to a lambda expression, anonymous method, or method group
|
2014-08-13 10:39:27 +01:00
|
|
|
// Line: 11
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Linq.Expressions;
|
|
|
|
|
|
|
|
class C
|
|
|
|
{
|
|
|
|
public static void Main ()
|
|
|
|
{
|
|
|
|
Expression<Func<bool>> e = () => "1".ToString is string;
|
|
|
|
}
|
|
|
|
}
|