aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/debug/pr32610.c
blob: d1dae1d38aecd4b61db5581b08a22dcbebaab832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR debug/32610 */
/* { dg-do compile } */

inline void
foo (int x)
{
  double (*arr)[x];
}

void
bar (void)
{
  foo (1);
}