[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / gtest-016.cs
blob113291154f3ec59caf92fadcde8b649f02c4a1d5
1 // A generic method may also use the type parameters
2 // from its enclosing type.
4 class Stack<S>
6 public static void Hello<T> (S s, T t)
7 { }
10 class X
12 Stack<int> stack;
14 public static void Main ()