linux-packaging-mono/mcs/errors/CS0315-2-lib.cs

11 lines
108 B
C#
Raw Normal View History

public class A<T> where T : A<T>.N1<T>
{
public class N1<U>
{
}
public void Foo (N1<int> arg)
{
}
}