New error tests at mcs/errors for accessor modifiers
[mono.git] / mcs / errors / cs0276.cs
1 // cs0276.cs: Accessibility modifiers can only be used if both get and set accessors exist
2 // Line: 7
3 // Compiler options: -t:library
4
5  class Error0276 
6  {
7          protected internal string Message {
8                  internal set {
9                  }
10          }
11
12  }
13