(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
staticforeach2.d
/*
TEST_OUTPUT:
---
fail_compilation/staticforeach2.d(10): Error: must use labeled `continue` within `static foreach`
---
*/
void main(){
	for(;;){
		static foreach(i;0..1){
			continue;
		}
	}
}