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-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0275.cs
blob
217b79374d26ffebbade82f82d813a5657e771a6
1
// cs0275.cs: `Error0275.Message.get': accessibility modifiers may not be used on accessors in an interface
2
// Line: 7
3
4
public interface
Error0275
5
{
6
string
Message
{
7
protected get
;
8
set
;
9
}
10
11
}
12