Updated with review feedback.
[mono.git] / mcs / errors / cs0666-2.cs
1 // CS0666: `B.D': Structs cannot contain protected members
2 // Line: 6
3
4 public struct B
5 {
6         protected internal delegate void D ();
7 }