blob: 7c086839b0c62ccf23e04c1ad64da2969dc9fcc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// REQUIRED_ARGS: -o-
// PERMUTE_ARGS:
bool cond;
/*
TEST_OUTPUT:
---
fail_compilation/fail12809.d(19): Error: `object.Exception` is thrown but not caught
fail_compilation/fail12809.d(16): Error: nothrow function `fail12809.test_finally1` may throw
fail_compilation/fail12809.d(35): Error: `object.Exception` is thrown but not caught
fail_compilation/fail12809.d(39): Error: `object.Exception` is thrown but not caught
fail_compilation/fail12809.d(32): Error: nothrow function `fail12809.test_finally3` may throw
---
*/
void test_finally1() nothrow
{
try
throw new Exception(""); // error
finally
{}
}
void test_finally2() nothrow
{
try
throw new Exception(""); // no error
finally
assert(0); // unconditional halt
}
void test_finally3() nothrow
{
try
throw new Exception(""); // error
finally
{
if (cond)
throw new Exception(""); // error
assert(0); // conditional halt
}
}
/*
TEST_OUTPUT:
---
fail_compilation/fail12809.d(59): Error: `object.Exception` is thrown but not caught
fail_compilation/fail12809.d(54): Error: nothrow function `fail12809.test_finally4` may throw
fail_compilation/fail12809.d(75): Error: `object.Exception` is thrown but not caught
fail_compilation/fail12809.d(79): Error: `object.Exception` is thrown but not caught
fail_compilation/fail12809.d(70): Error: nothrow function `fail12809.test_finally6` may throw
---
*/
void test_finally4() nothrow
{
try
{}
finally
throw new Exception(""); // error
}
void test_finally5() nothrow
{
try
assert(0); // unconditional halt
finally
throw new Exception(""); // no error
}
void test_finally6() nothrow
{
try
{
if (cond)
throw new Exception(""); // error
assert(0); // conditional halt
}
finally
throw new Exception(""); // error
}
|