13 lines
184 B
C#
13 lines
184 B
C#
|
// 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;
|
||
|
}
|
||
|
}
|
||
|
}
|