class Test{public: static void callBackFun(void){};};typedef void (*FPtr)(void);void Fun(FPtr ptr){ ptr();}void main(void){ Fun(Test::callBackFun); }