* man/mono-shlib-cop.1: Add man page for mono-shlib-cop program.
[mono.git] / mcs / tests / gen-16.cs
1 // A generic method may also use the type parameters
2 // from its enclosing type.
3
4 class Stack<S>
5 {
6         public static void Hello<T> (S s, T t)
7         { }
8 }
9
10 class X
11 {
12         Stack<int> stack;
13
14         static void Main ()
15         {
16         }
17 }