Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr44555.c
blob: 6ba8e491971dc66b6412eaf0f8ac7a6cb377dc7c [
file
] [
log
] [
blame
]
struct
a
{
char
b
[
100
];
};
int
foo
(
struct
a
*
a
)
{
if
(&
a
->
b
)
return
1
;
return
0
;
}
extern
void
abort
(
void
);
int
main
()
{
if
(
foo
((
struct
a
*)
0
)
!=
0
)
abort
();
return
0
;
}