Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / gtest-016.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 }