[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0104-3.cs
blob95e116ead4ac224595d9a2b47eef7cea841792be
1 // CS0104: `X' is an ambiguous reference between `A.X' and `B.X'
2 // Line: 25
4 namespace A
6 class X { }
9 namespace B
11 class X { }
14 namespace C
16 using System;
17 using A;
18 using B;
20 class Test
22 static void Main ()
24 Foo (delegate {
25 X x;
26 });
29 static void Foo (Action a)