[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0216-2.cs
1 // CS0216: The operator `X.operator true(X)' requires a matching operator `false' to also be defined
2 // Line: 5
3
4 class X {
5         public static bool operator true (X i)
6         {
7                 return true;
8         }
9
10         static void Main ()
11         {
12         }
13 }