2005-06-13 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / tests / gen-15.cs
1 // Very simple example of a generic method.
2
3 class Stack<S>
4 {
5         public static void Hello<T,U> (S s, T t, U u)
6         {
7                 U v = u;
8         }
9 }
10
11 class X
12 {
13         static void Main ()
14         {
15         }
16 }