aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr69932.c
blob: 4b82130157bea9f866a30f154226aaba24001ce0 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */

int a;
void fn1() {
  int b = 4;
  short c[4];
  c[b] = c[a];
  if (c[2]) {}

}