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

cs0143.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3f2b5061bd40f3b9c32b5f1db909e6829cfa026 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0143.cs: The type `int' has no constructors defined
// Line: 8

class C
{
	static void Main ()
	{
		int i = new int(1);
	}
}