// Test for message: converting '%s' to '%s' is questionable [229]
/* lint1-extra-flags: -X 351 */
typedef double (*unary_operator)(double);
int *
to_int_pointer(unary_operator op)
{
/* expect+1: warning: converting 'pointer to function(double) returning double' to 'pointer to int' is questionable [229] */
return (int *)op;
}
unary_operator
to_function_pointer(int *p)
{
/* expect+1: warning: converting 'pointer to int' to 'pointer to function(double) returning double' is questionable [229] */
return (unary_operator)p;
}