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
/
cs0155-2.cs
blob
7245cf5ef99eec9f86ae3640fae2b9efeadcfa02
1
// CS0155: The type caught or thrown must be derived from System.Exception
2
// Line: 8
3
class
X
{
4
static void
Main
()
5
{
6
try
{
7
}
catch
(
object
e
) {
8
throw
;
9
}
10
}
11
}