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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0534-9.cs
blob
f2150288f187c27f379f6f8f2e1b1b457d952389
1
// CS0534: `C' does not implement inherited abstract member `B.Foo(string)'
2
// Line: 13
3
4
public abstract class
A
5
{
6
public abstract int
Foo
(
string
s
);
7
}
8
9
public abstract class
B
:
A
10
{
11
public abstract override int
Foo
(
string
s
);
12
}
13
14
public class
C
:
B
15
{
16
}