[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs8091.cs
1 // CS8091: `Test.Test()': Contructors cannot be extern and have a constructor initializer
2 // Line: 16
3
4 public class A
5 {
6     public A (int arg)
7     {
8     }
9 }
10
11 public class Test : A
12 {
13         int prop = 1;
14
15         public extern Test ()
16                 : base (1);
17 }