Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1018.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7af0185b4c717eadf3c686987078ceadfef7875a (plain)
1
2
3
4
5
6
7
8
9
// cs1018.cs: Keyword this or base expected
// Line: 5

class X {
	X () : {
	}

	static void Main () {}
}