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: 5886f3b7bda3bf99527c6790aa0f18ca543c0312 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0143: The class `A' has no constructors defined
// Line: 9
// Compiler options: -r:CS0143-lib.dll

public class Test
{
	public static void Main ()
	{
		new A ();
	}
}