1 /* 2 REQUIRED_ARGS: -o- 3 PERMUTE_ARGS: 4 TEST_OUTPUT: 5 --- 6 fail_compilation/ice11552.d(14): Error: label `label` is undefined 7 fail_compilation/ice11552.d(17): called from here: test11552() 8 fail_compilation/ice11552.d(17): while evaluating: `static assert(test11552())` 9 --- 10 */ 11 test11552()12int test11552() 13 { 14 goto label; 15 return 1; 16 } 17 static assert(test11552()); 18