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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0470.cs
blob
f4a27205cb95b5dd9f532660bdc7f16f932b9ef1
1
// CS0470: 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
}