Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0144.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b754ce5750d479cd48785a62fd1b60a33988aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0144.cs: can not create instances of abstract classes or interfaces
// Line: 11
abstract class X {
	public abstract void B ();

}

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