2002-08-11 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / errors / cs0144-2.cs
1 // cs0144.cs: can not create instances of abstract classes or interfaces
2 // Line: 11
3 interface X {
4         void A ();
5
6 }
7
8 class Demo {
9         static void Main ()
10         {
11                 object x = new X ();
12         }
13 }