w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0837.cs
blobc2ca9b8732a39a51df24cbb41c5f52ba217fa2c1
1 // CS0837: The `is' operator cannot be applied to a lambda expression, anonymous method, or method group
2 // Line: 8
4 class X
6 static void Main ()
8 if (delegate {} is int) {
9 return;