[arm64] Add the full neon regs to the context
[mono.git] / mcs / errors / cs0442.cs
1 // CS0442: `C.Prop.get': abstract properties cannot have private accessors
2 // Line: 7
3
4 abstract class C {
5     protected abstract int Prop
6     {
7         private get;
8         set;
9     }
10 }
11