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;
}
}
}