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

gen-17-exe.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2dc4bcbc536eefbc4b9e8f28d53eddf56afe27e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class X
{
	public static void Foo (Stack stack)
	{
		stack.Hello<string> ("Hello World");
	}

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