1/* Test that functions passed to the comma operator are correctly converted
2   to pointers.  */
3/* Origin: Joseph Myers <jsm28@cam.ac.uk>.  */
4
5void foo (void);
6void (*fp) (void);
7char x[sizeof (1, foo) == sizeof (fp) ? 1 : -1];
8