Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr63567-4.c
blob: 0ca6c45cc23cf6496aa30dc5e0219a4b45e867b2 [
file
] [
log
] [
blame
]
/* PR c/63567 */
/* { dg-do compile } */
/* { dg-options "-Wpedantic" } */
struct
T
{
int
i
;
};
struct
S
{
struct
T t
;
};
struct
S s
=
{
.
t
=
{
(
int
)
{
1
}
}
};
/* { dg-warning "initializer element is not constant" } */