void f(int=0) ; int main() { f(); // ok (+f)(2);// ok (*+f)();// ok c++11; error with c++14: too few arguments to function return 0; }
Standard input is empty
prog.cpp: In function ‘int main()’:
prog.cpp:6:11: error: too few arguments to function
(*+f)();// ok c++11; error with c++14: too few arguments to function
^
Standard output is empty