[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0101-9.cs
1 // CS0101: The namespace `N' already contains a definition for `Test<T>'
2 // Line: 7
3 // Compiler options: CS0101-9-2.cs
4
5 namespace N
6 {
7         class Test<T> {}
8 }