repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0276.cs
blob
ee6fc11a2460f1e1fcbe6ddd719d01aba3caffb1
1
// CS0276: `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