repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
c99-flex-array-typedef-2.c
blob
f869f75c2bdd4c8f313653696873300df6815df7
1
/* Test for invalid uses of flexible array members. */
2
/* { dg-do compile } */
3
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
4
5
typedef
char
A
[];
6
7
struct
S
{
8
int
n
;
9
A a
;
10
};
11
12
void
13
foo
(
void
)
14
{
15
struct
S s
;
16
s
.
a
=
"abc"
;
/* { dg-error "invalid use of flexible array member" } */
17
}