1 // { dg-do compile }
2 
3 bool a;
4 extern bool b[];
5 long c, d;
6 int *f;
g(bool h)7 void g(bool h)
8 {
9   for (short e = 0; e < c; e = 4)
10     for (; d; d++)
11       b[d] = a = f[d] ? c ? h : 0 : h;
12 }
13