[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0273.cs
1 // CS0273: The accessibility modifier of the `Error0273.Message.get' accessor must be more restrictive than the modifier of the property or indexer `Error0273.Message'
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