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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0502.cs
blob
54979376c8839117b2c6ccf632c96ed9802de16c
1
// CS0502: `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
}