cleol
[mcs.git] / tests / gtest-020.cs
blobd8f4992d5efd121fc8b9cf2807cf89dce0d15ed7
1 struct Stack<S>
3 public void Hello (S s)
4 { }
7 class X
9 Stack<int> stack;
11 void Test ()
13 stack.Hello (3);
16 static void Main ()
17 { }