repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0724.cs
blob
b4da1604af52ca45cae5b540527170efa7852f2e
1
// cs0724.cs: 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
}