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: 4305642b4b3e58bb0581addcb5f9b011d4b4f836 (plain)
1
2
3
4
5
6
7
8
// CS1057: `B._a': Static classes cannot contain protected members
// Line: 6

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