[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs7083-2.cs
1 // CS7083: Expression must be implicitly convertible to Boolean or its type `C' must define operator `false'
2 // Line: 8
3
4 class C
5 {
6         dynamic M (dynamic d)
7         {
8                 return this && d;
9         }
10 }