summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0144.cs
blob: 440b4048e89518781224f17b22a6cf54ba3a47b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0144: Cannot create an instance of the abstract class or interface `X'
// Line: 11
abstract class X {
	public abstract void B ();

}

class Demo {
	static void Main ()
	{
		object x = new X ();
	}
}