summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-46.cs
blob: 87e31f3c9560700e2c3eb59615df0c05127b24f3 (plain)
1
2
3
4
5
6
7
8
9
// CS1525: Unexpected symbol `;', expecting `(', `[', or `{'
// Line: 7

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