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

cs0628-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8cdb3085f01af099f522739a7982af43b9855c78 (plain)
1
2
3
4
5
6
7
8
9
// cs0628.cs: 'B._a': new protected member declared in static class
// Line: 6
// Compiler options: -warnaserror -warn:4

public static class B
{
	protected static object _a = null;
		    
}