a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
26 lines
238 B
C#
26 lines
238 B
C#
public class Foo<T>
|
|
{
|
|
protected class Bar<V>
|
|
{
|
|
}
|
|
}
|
|
|
|
public interface IBaz
|
|
{
|
|
}
|
|
|
|
public class FooImpl : Foo<IBaz>
|
|
{
|
|
Bar<int> f;
|
|
|
|
private class BarImpl : Bar<IBaz>
|
|
{
|
|
}
|
|
|
|
public static int Main ()
|
|
{
|
|
new FooImpl ();
|
|
return 0;
|
|
}
|
|
}
|