summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1057-2.cs
blob: 49110842c0f47dcf6a8a20be9adbcb467583fee0 (plain)
1
2
3
4
5
6
7
// CS1057: `B.E': Static classes cannot contain protected members
// Line: 6

public static class B
{
	protected class E {}
}