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

gtest-013.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a248e61a67581fc861978530e3e5b127d72641e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Compiler options: -r:gtest-013-lib.dll

public class X
{
	Stack<int> stack;

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

	static void Main ()
	{ }
}