2005-06-13 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / tests / gen-9.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         static void Main()
24         {
25         }
26 }