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

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

class X
{
	Stack<int> stack;

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

	static void Main ()
	{ }
}