[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0143.cs
1 // CS0143: The class `A' has no constructors defined
2 // Line: 9
3 // Compiler options: -r:CS0143-lib.dll
4
5 public class Test
6 {
7         public static void Main ()
8         {
9                 new A ();
10         }
11 }