overflow bug has been fixed in net_4_0
[mcs.git] / errors / cs0837.cs
blob7c56fd1addd7876801dc13bdd621c41075eedbde
1 // CS0837: The `is' operator cannot be applied to a lambda expression or anonymous method
2 // Line: 8
4 class X
6 static void Main ()
8 if (delegate {} is int) {
9 return;