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

cs0144-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6a94543115b5a29cf1b987db14e97b1bb4f4fe3 (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
interface X {
	void A ();

}

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