// 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 x + y; } int main() { int (*fun)( int, int, int ) = foo; return fun( 0, 0, 42 ); /* ERROR */ }