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
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0273.cs
blob
ee5a2bde127eb71188e3dc5ed0b38db89a52766b
1
// cs0273.cs: The accessibility modifier of the `Error0273.Message.get' accessor must be more restrictive than the modifier of the property or indexer `Error0273.Message'
2
// Line: 8
3
// Compiler options: -t:library
4
5
class
Error0273
6
{
7
protected internal string
Message
{
8
public get
{
9
return
"Hi"
;
10
}
11
set
{
12
}
13
}
14
15
}
16