[mcs] Add missing vector cloning of definite assignment on-true. Fixes #57505
[mono.git] / mcs / errors / cs0274.cs
1 // CS0274: `Error0274.Message': Cannot specify accessibility modifiers for both accessors of the property or indexer
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