[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0837-4.cs
1 // CS0837: The `is' operator cannot be applied to a lambda expression, anonymous method, or method group
2 // Line: 11
3
4 using System;
5 using System.Linq.Expressions;
6
7 class C
8 {
9         public static void Main ()
10         {
11                 Expression<Func<bool>> e = () => "1".ToString is string;
12         }
13 }