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

gtest-011.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a4c09d3fe9dc0250faf0c0d93424b264be12a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Stack<S>
{
	public void Hello (S s)
	{ }
}

class X
{
	Stack<int> stack;

	void Test ()
	{
		stack.Hello (3);
	}

	public static void Main ()
	{ }
}