[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs8091.cs
blob8640cf6777644902e1d8fa9c04bb4952fdd4d6d6
1 // CS8091: `Test.Test()': Contructors cannot be extern and have a constructor initializer
2 // Line: 16
4 public class A
6 public A (int arg)
11 public class Test : A
13 int prop = 1;
15 public extern Test ()
16 : base (1);