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

gcs0411-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42662a80df268edfec3bf95d915be19905fe530f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Test<A>
{
	public void Foo<V,W> (V v, V w)
	{ }
}

class X
{
	static void Main ()
	{
		Test<float> test = new Test<float> ();
		test.Foo (8, 9);
	}
}