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
* MSBuild.cs (Execute): Don't share target output items,
[mcs.git]
/
errors
/
cs0550.cs
blob
9bfe22b330e8522149384a02b4ae6b86ba9cd6a9
1
// cs0550.cs: `PropertyClass.PropertyInterface.Value.set' is an accessor not found in interface member `PropertyInterface.Value'
2
// Line: 13
3
4
interface
PropertyInterface
{
5
int
Value { get; }
6
}
7
8
public class
PropertyClass
:
PropertyInterface
{
9
int
PropertyInterface
.
Value
{
10
get
{
11
return
0
;
12
}
13
set
{ }
14
}
15
}
16
17