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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0509-3.cs
blob
e4acbb2612da5969d7d854c412d43f2fc0bbf28c
1
// CS0509: `A': cannot derive from sealed type `D'
2
// Line: 6
3
4
delegate void
D
();
5
6
class
A
:
D
7
{
8
}