[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0103-2.cs
1 // CS0103: The name `i' does not exist in the current context
2 // Line: 9
3 // Compiler options: -r:CS0103-2-lib.dll
4
5 class A : C
6 {
7         void Test ()
8         {
9                 i = 0;
10         }
11 }