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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0683.cs
blob
f3429d633a34da7fcd31c3f0db3c23b866814ae1
1
// cs0683.cs: `C.I.set_Foo(int)' explicit method implementation cannot implement `I.Foo' because it is an accessor
2
// Line: 11
3
4
interface
I
5
{
6
int
Foo { set; }
7
}
8
9
class
C
:
I
10
{
11
void
I
.
set_Foo
(
int
v
)
{ }
12
}