[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs7003-2.cs
1 // CS7003: Unbound generic name is not valid in this context
2 // Line: 10
3
4 class G<T>
5 {
6 }
7
8 class C
9 {
10         G<> field;
11 }