summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0666-2.cs
blob: 8beeafbacb3241349d0a2f44ae5f4a026fea2f9e (plain)
1
2
3
4
5
6
7
// CS0666: `B.D': Structs cannot contain protected members
// Line: 6

public struct B
{
	protected internal delegate void D ();
}