2008-02-18 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / errors / cs0837.cs
1 // CS0837: The `is' operator cannot be applied to a lambda expression or anonymous method
2 // Line: 8
3
4 class X
5 {
6         static void Main ()
7         {
8                 if (delegate {} is int) {
9                         return;
10                 }
11         }
12 }