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

cs0026.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6cd8a192e6304193714064a39397cc5ed0e76a17 (plain)
1
2
3
4
5
6
7
8
// cs0026.cs: Keyword `this' is not valid in a static property, static method, or static field initializer
// Line: 6
class X {
	static void A ()
	{
		this = null;
	}
}