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: e4b5ca7e580327cb5ab87e73606b87391e55ab42 (plain)
1
2
3
4
5
6
7
8
// cs0026: use of this is not allowed in static methods
// Line: 6
class X {
	static void A ()
	{
		this = null;
	}
}