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

gcs0408-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b7c628d409e8f081435648d6667079c3a87d542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0408: `X<T>' cannot define overload members that may unify for some type parameter substitutions
// Line: 9
class X<T>
{
	void Foo (T[] t)
	{ }

	void Foo (int[][] t)
	{ }
}

class X
{
	static void Main ()
	{ }
}