[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[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;