MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / staticforeach1.d
blobb58f520c0bf3354d0bb7ea656ad48d7b96dcdb08
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/staticforeach1.d(10): Error: must use labeled `break` within `static foreach`
5 ---
6 */
7 void main(){
8 for(;;){
9 static foreach(i;0..1){
10 break;