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
[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git]
/
mcs
/
errors
/
cs1715.cs
blob
4ebc2f3f55908e5ef5f3d3e6c6db23b574a30cdd
1
// CS1715: `DerivedClass.Prop': type must be `bool' to match overridden member `BaseClass.Prop'
2
// Line: 9
3
4
class
BaseClass
{
5
protected virtual bool
Prop { set {}
}
6
}
7
8
class
DerivedClass
:
BaseClass
{
9
protected override int
Prop { set {}
}
10
}
11
12
13