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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0205-4.cs
blob
d147bad3c62e726c05e3ef807fddeebed44770f9
1
// CS0205: Cannot call an abstract base member `A.Foobar'
2
// Line: 13
3
4
public abstract class
A
5
{
6
public abstract int
Foobar { set; }
7
}
8
9
public class
B
:
A
10
{
11
public override int
Foobar
{
12
set
{
13
base
.
Foobar
=
value
;
14
}
15
}
16
}
17