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
/
cs0724.cs
blob
a0d5c1467c28f1bc6d4c027c16c1e93bcc6ccf7a
1
// CS0724: A throw statement with no arguments is not allowed inside of a finally clause nested inside of the innermost catch clause
2
// Line: 14
3
4
class
C
5
{
6
static void
Test
()
7
{
8
try
9
{
10
throw new
System
.
Exception
();
11
}
12
catch
13
{
14
try
15
{
16
}
17
finally
18
{
19
throw
;
20
}
21
}
22
}
23
}