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
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-514.cs
blob
70d1edd01f9fab31f699c490ee2b5f693eab40b2
1
// Compiler options: -warnaserror -warn:2
2
3
using
System
;
4
class
X
{
5
6
public static void
HandleConflict
(
int
a
) {
7
if
(
a
!=
1
)
8
goto
throwException
;
9
if
(
a
!=
2
)
10
goto
throwException
;
11
return
;
12
throwException
:
13
throw new
Exception
();
14
}
15
16
static int
Main
()
17
{
18
int
ret
=
1
;
19
try
{ HandleConflict (1); }
20
catch
{
21
try
{ HandleConflict (2); }
22
catch
{ ret = 0; }
23
}
24
return
ret
;
25
}
26
}