repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20011106-1.c
blob
9363780a65a69aa4fafccc2300a38869ccbfe830
1
/* Test that functions passed to the comma operator are correctly converted
2
to pointers. */
3
/* Origin: Joseph Myers <jsm28@cam.ac.uk>. */
4
5
void
foo
(
void
);
6
void
(*
fp
) (
void
);
7
char
x
[
sizeof
(
1
,
foo
) ==
sizeof
(
fp
) ?
1
: -
1
];