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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr54363.c
blob
aea0f9057b0847663303794385d79e477b78a35c
1
/* PR c/54363 */
2
/* { dg-do compile } */
3
/* { dg-options "-std=gnu99" } */
4
5
struct
S
{
char
**
a
; };
6
7
void
8
test
(
void
)
9
{
10
struct
S b
= { .
a
= (
char
**) {
"a"
,
"b"
} };
/* { dg-warning "(initialization|excess elements)" } */
11
struct
S c
= { .
a
= (
char
*[]) {
"a"
,
"b"
} };
12
}