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

19 lines
190 B
C#
Raw Normal View History

// Compiler options: -t:library
public interface IFoo
{
void Test<T> ();
void Test<U,V> ();
}
public interface IBar<T>
{
void Test ();
}
public interface IBar<U,V>
{
void Test ();
}