Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
c99-vla-1.c
blob: 0378ce38bcdfb5a9883fb0a2f0c2430ba15edef4 [
file
] [
log
] [
blame
]
/* Origin: PR 3467 */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
void
tdef
(
int
n
)
{
typedef
int
A
[
n
];
/* { dg-bogus "forbids variable-size array" } */
A a
;
A
*
p
;
p
=
&
a
;
}