Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs8051.cs
1 // CS8051: Auto-implemented property `V.P' must have get accessor
2 // Line: 6
3
4 class V
5 {
6         public object P { set; } = 1;
7 }