* man/mono-shlib-cop.1: Add man page for mono-shlib-cop program.
[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 }