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

cs1057.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60ffcbd12df0f7ad19e5232e7ca7e533b5a8ab52 (plain)
1
2
3
4
5
6
7
8
// cs1057.cs: `B._a': Static classes cannot contain protected members
// Line: 6

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