2003-12-28 Ben Maurer <bmaurer@users.sourceforge.net>
[mono.git] / mcs / tests / gen-36.cs
1 class Stack<T>
2 {
3         void Hello (Stack<T> stack)
4         {
5         }
6
7         void Test ()
8         {
9                 Hello (this);
10         }
11 }
12
13 class X
14 {
15         static void Main ()
16         { }
17 }