2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0144-2.cs
blob14a864fe8d4bbaed97354518c7ef39a52354a5b1
1 // cs0144-2.cs: 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 ();