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