[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0121-8.cs
blob776941a35ff4066fb2c7dfb3149145053fb45ae0
1 // CS0121: The call is ambiguous between the following methods or properties: `C.Foo(byte)' and `C.Foo(int)'
2 // Line: 18
4 class C
6 static int Foo (byte b = 9)
8 return 4;
11 static int Foo (int i = 8)
13 return 2;
16 public static void Main ()
18 Foo ();