[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0246-25.cs
1 // CS0246: The type or namespace name `X' could not be found. Are you missing an assembly reference?
2 // Line: 4
3
4 class A<T> where T : X
5 {
6         public class X {}
7 }