[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0122-36.cs
1 // CS0122: `N.S' is inaccessible due to its protection level
2 // Line: 9
3 // Compiler options: -r:CS0122-36-lib.dll
4
5 class X
6 {
7         static void Main ()
8         {
9                 var v = new N.S ();
10         }
11 }
12