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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0276.cs
blob
cbad5ff9ed26afc219c6cf4e77f38f9145e01870
1
// cs0276.cs: `Error0276.Message': accessibility modifiers on accessors may only be used if the property or indexer has both a get and a set accessor
2
// Line: 7
3
// Compiler options: -t:library
4
5
class
Error0276
6
{
7
protected internal string
Message
{
8
internal set
{
9
}
10
}
11
12
}
13