2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / errors / cs0273.cs
1 // cs0273.cs: Accessibility modifier must be more restrictive than the property access
2 // Line: 8
3 // Compiler options: -t:library
4
5  class Error0273
6  {
7          protected internal string Message {
8                  public get {
9                          return "Hi";
10                  }
11                  set {
12                  }
13          }
14
15  }
16