Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20011106-1.c
blob: 9363780a65a69aa4fafccc2300a38869ccbfe830 [
file
] [
log
] [
blame
]
/* Test that functions passed to the comma operator are correctly converted
to pointers. */
/* Origin: Joseph Myers <jsm28@cam.ac.uk>. */
void
foo
(
void
);
void
(*
fp
)
(
void
);
char
x
[
sizeof
(
1
,
foo
)
==
sizeof
(
fp
)
?
1
:
-
1
];