[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0276.cs
1 // CS0276: `Error0276.Message': accessibility modifiers on accessors may only be used if the property or indexer has both a get and a set accessor
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