summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0143.cs
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 ();
	}
}