[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0144-2.cs
blobb8ea4f0f236b05989e56a8efc5bd8bac5acc6b48
1 // CS0144: Cannot create an instance of the abstract class or interface `X'
2 // Line: 11
3 interface X {
4 void A ();
8 class Demo {
9 static void Main ()
11 object x = new X ();