add SafeSerializationEventArgs
[mcs.git] / tests / gtest-465-lib.cs
blob2e02ceb8e9b4d7bb4551e077602b45d20598164c
1 // Compiler options: -target:library
3 public interface InterfaceWithGenericMethod
5 void GenericMethod_1<T>() where T : struct, II;
6 void GenericMethod_2<T>() where T : class, II;
7 void GenericMethod_3<T>() where T : II, new ();
10 public interface II