Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr27409.c
blob: 4bfae43be3774edb43127e3e28d52d29054912cc [
file
] [
log
] [
blame
]
/* { dg-do compile } */
typedef
struct
{
struct
{
}
z
;
}
thang_t
;
struct
{
short
e
;
thang_t
f
;
int
g
;
}
my_struct
;
void
foo
(
thang_t
*);
void
function
(
int
blaz
)
{
thang_t
*
fp
=
&
my_struct
.
f
;
foo
(
fp
);
}