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
/
cs0509.cs
blob
925b1fabf99fcc3dc54c2302f05d161b4231ece2
1
// CS0509: `X': cannot derive from sealed type `V'
2
// Line: 8
3
4
struct
V
{
5
int
v
;
6
}
7
8
class
X
:
V
{
9
}