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

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

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