2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-465.cs
blobbf7a87d92a144a5b37b3ee81461c8d97c97ef5be
1 // Compiler options: -r:gtest-465-lib.dll
3 public class DerivedClass : InterfaceWithGenericMethod
5 public void GenericMethod_1<T> () where T : struct, II
9 public void GenericMethod_2<T> () where T : class, II
13 public void GenericMethod_3<T> () where T : II, new ()
18 class Program
20 public static int Main ()
22 new DerivedClass ();
23 return 0;