linux-packaging-mono/mcs/tests/gtest-465-lib.cs

13 lines
257 B
C#
Raw Permalink Normal View History

// Compiler options: -target:library
public interface InterfaceWithGenericMethod
{
void GenericMethod_1<T>() where T : struct, II;
void GenericMethod_2<T>() where T : class, II;
void GenericMethod_3<T>() where T : II, new ();
}
public interface II
{
}