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

dtest-062.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48fcac23da0dea4cc713911b215326c028f2b191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

class G<T>
{
}

public class Program
{
	static void Test<T> (G<G<T>> g)
	{
	}

	static void Main ()
	{
		dynamic d = new G<G<int>> ();
		Test (d);
	}
}