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

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

public class X
{
	public static void Foo (Stack stack)
	{
		stack.Hello<string> ("Hello World");
	}

	public static void Main ()
	{
		Stack stack = new Stack ();
		Foo (stack);
	}
}