#include typedef void (*VoidFun)(); int intFun() { return 0; } int main() { ((VoidFun)intFun)(); /* ERROR */ }