Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1057.cs
1 // CS1057: `B._a': Static classes cannot contain protected members
2 // Line: 6
3
4 public static class B
5 {
6         protected static object _a = null;
7                     
8 }