blob: d885a723d7106673e1a9aac17a6dd615af8584a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS0273: The accessibility modifier of the `Error0273.Message.get' accessor must be more restrictive than the modifier of the property or indexer `Error0273.Message'
// Line: 8
// Compiler options: -t:library
class Error0273
{
protected internal string Message {
public get {
return "Hi";
}
set {
}
}
}
|