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

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

	void Foo (int i)
	{ }
}