Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-015.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         public static void Main ()
14         {
15         }
16 }