Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-009.cs
1 using System;
2
3 interface I
4 {
5         void Hello ();
6 }
7
8 class Stack<T>
9         where T : ICloneable
10 {
11         public object Test (T t)
12         {
13                 return t.Clone ();
14         }
15 }
16
17 class Test
18 {
19 }
20
21 class X
22 {
23         public static void Main()
24         {
25         }
26 }