1 /* { dg-do compile } */
2 
3 static int a[10][2];
4 int b;
5 
6 void
fn1()7 fn1 ()
8 {
9   b = 0;
10   for (; b < 6; b++)
11     a[b][2] ^= 1;
12 }
13