[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0824.cs
1 // CS0824: Constructor `C.C()' is marked `external' but has no external implementation specified
2 // Line: 7
3 // Compiler options: -warnaserror
4
5 class C
6 {
7         public extern C();
8 }