33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{
try {
puts("try1");
try {
puts("try2");
} catch (ex) {
(void)ex;
puts("this should not be called");
}
throw(5);
} catch (ex) {
printf("caught %d (should be 5)\n", ex);
}
try {
throw(1);
return 1;
} catch (ex) {
(void)ex;
}
return 0;
}
|
<
<
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{
try {
puts("try1");
try {
puts("try2");
} catch (ex) {
puts("this should not be called");
}
throw(5);
} catch (ex) {
printf("caught %d (should be 5)\n", ex);
}
try {
throw(1);
return 1;
} catch (ex) {
}
return 0;
}
|