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
/
cs0737-3.cs
blob
0069790b239d8b99c452862a198f9a5243871cc9
1
// CS0737: `MySubClass' does not implement interface member `I.Foo.set' and the best implementing candidate `MyTest.Foo.set' is not public
2
// Line: 6
3
4
using
System
;
5
6
interface
I
7
{
8
int
Foo { get; set; }
9
}
10
11
public class
MySubClass
:
MyTest
,
I
12
{
13
}
14
15
public class
MyTest
16
{
17
public int
Foo
18
{
19
get
{ return 1; }
20
protected set
{ }
21
}
22
}