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)
{
}
}