/* Test that functions passed to the comma operator are correctly converted to pointers. */ /* Origin: Joseph Myers . */ void foo (void); void (*fp) (void); char x[sizeof (1, foo) == sizeof (fp) ? 1 : -1];