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: 14a864fe8d4bbaed97354518c7ef39a52354a5b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0144-2.cs: Cannot create an instance of the abstract class or interface `X'
// Line: 11
interface X {
	void A ();

}

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