// 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 #include typedef int (*IntFun)(); short shortFun() { return 0; } int main() { int x = ((IntFun)shortFun)(); /* ERROR */ assert( x == 0 ); }