Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0411-13.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2bf576a05398dd90e2492c649af7e1d109c5646e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0411: The type arguments for method `C.Foo<T>(T[], T[])' cannot be inferred from the usage. Try specifying the type arguments explicitly
// Line: 12

class C
{
	public static void Foo<T> (T[] t1, T[] t2)
	{
	}
	
	public static void Main ()
	{
		Foo (new int[0], new byte[0]);
	}
}