[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0119-4.cs
1 // CS0119: Expression denotes a `variable', where a `type' was expected
2 // Line: 9
3
4 class A
5 {
6         private string test;
7         public void f ()
8         {
9                 this.test bad = null;
10         }
11         static void Main () {}
12 }
13