2005-06-03 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / gen-17-exe.cs
1 // Compiler options: -r:gen-17-dll.dll
2
3 public class X
4 {
5         public static void Foo (Stack stack)
6         {
7                 stack.Hello<string> ("Hello World");
8         }
9
10         static void Main ()
11         {
12                 Stack stack = new Stack ();
13                 Foo (stack);
14         }
15 }