MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice11925.d
blob2627f2b276c44a4d687704b871ae0eff996bfcd9
1 /* TEST_OUTPUT:
2 ---
3 fail_compilation/ice11925.d(23): Error: cannot `goto` into `try` block
4 fail_compilation/ice11925.d(31): Error: cannot `goto` into `try` block
5 ---
6 */
8 void test11925a()
10 try
12 try
14 L1: {}
16 finally
20 finally
23 goto L1;
26 void test11925b()
28 switch (1)
30 case 1:
31 goto L1;
32 break;
34 default:
35 break;
38 try
40 L1: { }
42 finally