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