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
* config/xtensa/xtensa.c (function_arg): Generalize logic so that it
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
c99-flex-array-2.c
blob
496f4f985cf8ee37bfda8d309b1233c4d320470f
1
/* PR c/5623 */
2
/* { dg-do compile } */
3
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
4
5
struct
blah
{
6
int
number
;
7
char
array
[];
8
};
9
10
void
foo
(
void
)
11
{
12
struct
blah b
;
13
b
.
array
=
"hi"
;
/* { dg-error "invalid use of flexible array member" } */
14
}