summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-24.cs
blob: c481178c31afe7c29c959a123da1099a68656aa0 (plain)
1
2
3
4
5
6
7
8
9
// CS1525: Unexpected symbol `{', expecting `base' or `this'
// Line: 5

class X {
	X () : {
	}

	static void Main () {}
}