blob: cd077847bf1f151248ee76beeabd8bea0ad44f33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS0274: `Error0274.Message': Cannot specify accessibility modifiers for both accessors of the property or indexer
// Line: 7
// Compiler options: -t:library
class Error0274
{
protected internal string Message {
protected get {
return "Hi";
}
internal set {
}
}
}
|