[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0121-27.cs
blob57b73a40e39fb850389c35d85291191bea989a8c
1 // CS0121: The call is ambiguous between the following methods or properties: `G<int>.Foo()' and `G<string>.Foo()'
2 // Line: 18
4 using static G<int>;
5 using static G<string>;
7 class G<T>
9 public static void Foo ()
14 class Test
16 public static void Main ()
18 Foo ();