// S : tags error min c $TAGS // S : expect --result error --location-comment ERROR // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT test.bc int foo( int x, int y ) { return 0; } int main() { int (*fun)( int ) = (int(*)( int ))foo; return fun( 0 ); /* ERROR */ }