12 lines
104 B
C#
Raw Normal View History

public interface Foo
{
T Test<T> ()
where T : class;
}
class X
{
public static void Main ()
{ }
}