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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0501.cs
blob
6e5f3177cf622f39f2f3eca2228cf6d95e3633f5
1
// CS0501: `Class.X()' must have a body because it is not marked abstract, extern, or partial
2
// Line: 5
3
4
class
Class
{
5
virtual public void
X
();
6
}