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: efb9866c65c7205c97aa0f038d5a7df77b6557d0 (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);
	}
}