Switch to compiler-tester
[mono.git] / mcs / tests / gtest-008.cs
1 interface I
2 {
3         void Hello ();
4 }
5
6 class Stack<T>
7         where T : I, new ()
8 {
9 }
10
11 class Test
12 {
13 }
14
15 class X
16 {
17         static void Main()
18         {
19         }
20 }