blob: 578efcc694a5726e14434fbe77875fe9bf93ad50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0426: The nested type `Foo' does not exist in the type `C<int>'
// Line: 11
public abstract class B<T>
{
public class Foo
{
}
}
public class C<T> : B<C<int>.Foo>
{
}
|