aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr97860.c
blob: 04c0f194bde04987410902768455b8a0e8a01698 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR c/97860 */
/* { dg-do compile } */
/* { dg-options "" } */

void
foo (int n)
{
  typedef int T[0];
  typedef T V[n];
  void bar (V);
}