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-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0205.cs
blob
25f6050eba286770e3575439b4a975b8bc02f33b
1
// cs0205.cs: Cannot call an abstract base member `A.Foobar()'
2
// Line: 20
3
using
System
;
4
5
public abstract class
A
6
{
7
public abstract void
Foobar
();
8
}
9
10
public class
B
:
A
11
{
12
public override void
Foobar
()
13
{
14
base
.
Foobar
();
15
}
16
17
static void
Main
()
18
{
19
B b
=
new
B
();
20
b
.
Foobar
();
21
}
22
}