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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
init-bad-6.c
blob
8235f5d967664acedf2f8e31f7196dacef9d6281
1
/* ICE arising from bug computing composite type of zero-length array
2
types: PR 35433. */
3
/* { dg-do compile } */
4
/* { dg-options "" } */
5
6
typedef
int
*
X
;
7
typedef
int
*
Y
;
8
9
X
(*
p
)[][
0
];
10
Y
(*
q
)[][
0
];
11
12
typeof
(*(
0
?
p
:
q
))
x
= {
0
};
/* { dg-warning "excess elements in array initializer|near initialization" } */