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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0500.cs
blob
8417a6ca2b1693ba1051a288d179683a148e4f16
1
// cs0500.cs: `X.B()' cannot declare a body because it is marked abstract
2
// Line: 5
3
4
abstract class
X
{
5
public abstract void
B
() {
6
}
7
}