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: 92edda18f0ddb7ad32afbbda9daf4c1d585fa373 (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);
	}

	public static void Main ()
	{ }
}