2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0274.cs
1 // cs0274.cs: Accessibility modifiers for both accesors is not allowed
2 // Line: 7
3 // Compiler options: -t:library
4
5  class Error0274 
6  {
7          protected internal string Message {
8                  protected get {
9                          return "Hi";
10                  }
11                  internal set {
12                  }
13          }
14
15  }
16