[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0411-13.cs
blob2bf576a05398dd90e2492c649af7e1d109c5646e
1 // CS0411: The type arguments for method `C.Foo<T>(T[], T[])' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 12
4 class C
6 public static void Foo<T> (T[] t1, T[] t2)
10 public static void Main ()
12 Foo (new int[0], new byte[0]);