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

gcs0408-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56958e827c5bafaeba4373c8dd0e4c1d5e19f115 (plain)
1
2
3
4
5
6
7
8
class X<T>
{
	void Foo (T[] t)
	{ }

	void Foo (int[] t)
	{ }
}