[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0426-3.cs
1 // CS0426: The nested type `Foo' does not exist in the type `C<int>'
2 // Line: 11
3
4 public abstract class B<T>
5 {
6         public class Foo
7         {
8         }
9 }
10
11 public class C<T> : B<C<int>.Foo>
12 {
13 }