1 /* { dg-do compile } */
2 
3 int a;
fn1()4 void fn1() {
5   int b = 4;
6   short c[4];
7   c[b] = c[a];
8   if (c[2]) {}
9 
10 }
11