repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0274.cs
blob
533307bd8637668f4db56afdd2cc36ab0a674f07
1
// cs0274.cs: `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