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

gtest-004.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cd09cb0adbbc874653d6e8b1e90c1178fbe4b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Stack<T> {
}

class Test {
}

class T {
	public void Foo (Stack<Test> a)
	{ }

	public static void Main()
	{
	}
}