repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
c90-vla-1.c
blob
c8c93c7826c0dbb37efb0bd7be3a074618a9c398
1
/* Origin: PR 3467 */
2
/* { dg-do compile } */
3
/* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
4
5
void
6
tdef
(
int
n
)
7
{
8
typedef
int
A
[
n
];
/* { dg-error "forbids variable-size array" } */
9
A a
;
10
A
*
p
;
11
p
= &
a
;
12
}