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

14 lines
157 B
C#
Raw Normal View History

// Compiler options: -t:library
public class Foo<T>
{
public void Hello (T t)
{ }
}
public class Bar<T,U> : Foo<U>
{
public void Test (T t, U u)
{ }
}