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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0502.cs
blob
0431db0ea5a0579f95b068ea59f2107fa91b5980
1
// cs0502.cs: `Main.Test()' cannot be both abstract and sealed
2
// Line: 10
3
4
abstract class
Base
{
5
public abstract void
Test
();
6
}
7
8
abstract class
Main
:
Base
9
{
10
public abstract sealed override void
Test
() {}
11
}