[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0104.cs
1 // CS0104: `X' is an ambiguous reference between `A.X' and `B.X'
2 // Line: 16
3 namespace A {
4         class X {
5         }
6 }
7
8 namespace B {
9         class X {
10         }
11 }
12
13 namespace C {
14         using A;
15         using B;
16         class D : X {
17
18         static void Main () {}
19         }
20 }