13 lines
184 B
C#
Raw Normal View History

// CS0837: The `is' operator cannot be applied to a lambda expression or anonymous method
// Line: 8
class X
{
static void Main ()
{
if (delegate {} is int) {
return;
}
}
}