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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0534-10.cs
blob
6af491cf680edb65fb56f453a3bde416000dad40
1
// CS0534: `C' does not implement inherited abstract member `B.Foo()'
2
// Line: 16
3
4
class
A
5
{
6
public virtual void
Foo
()
7
{
8
}
9
}
10
11
abstract class
B
:
A
12
{
13
public abstract override void
Foo
();
14
}
15
16
class
C
:
B
17
{
18
}