[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-327.cs
1 class X2 {}
2 namespace A {
3         enum X1 { x1 };
4         enum X2 { x2 };
5 }
6 namespace A.B {
7         using Y1 = X1;
8         using Y2 = X2;
9         class Tester {
10                 internal static Y1 y1 = Y1.x1;
11                 internal static Y2 y2 = Y2.x2;
12                 public static void Main() { }
13         }
14 }