Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
staticforeach2.d
blob: 25e283efb5cd7a78ac16da55e08f01d531a66e3e [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/staticforeach2.d(10): Error: must use labeled `continue` within `static foreach`
---
*/
void
main
(){
for
(;;){
static
foreach
(
i
;
0.
.
1
){
continue
;
}
}
}