Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr57184.c
blob: 319d3fd5312f817045e77cee5a7f74e8269e4442 [
file
] [
log
] [
blame
]
/* PR debug/57184 */
/* { dg-do compile } */
/* { dg-options "-O2 -g" } */
struct
S
{};
void
bar
(
struct
S
*
const
);
static
struct
S
*
const
c
=
&(
struct
S
)
{};
void
foo
(
void
)
{
bar
(
c
);
}