a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
331 B
C#
17 lines
331 B
C#
// 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 {
|
|
}
|
|
}
|
|
|
|
}
|
|
|