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
/
cs0238.cs
blob
88ab78374bcab3498c29891f16544002507ef43b
1
// CS0238: `DerivedClass.Show()' cannot be sealed because it is not an override
2
// Line: 10
3
4
class
BaseClass
{
5
void
Show
() {}
6
}
7
8
class
DerivedClass
:
BaseClass
{
9
sealed void
Show
() {}
10
11
static void
Main
() {}
12
}
13