[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0432-2.cs
1 // CS0432: Alias `fool' not found
2 // Line: 9
3
4 class fool { }
5
6 class X {
7         static void Main ()
8         {
9                 fool::Console.WriteLine ("hello");
10         }
11 }