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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0470.cs
blob
90d3fa82a4821f04288171009cb01723b854665b
1
// cs0470.cs: Method `C.get_P()' cannot implement interface accessor `I.P.get'
2
// Line: 11
3
4
interface
I
5
{
6
int
P { get; }
7
}
8
9
class
C
:
I
10
{
11
public int
get_P
()
12
{
13
return
1
;
14
}
15
}