#include using namespace std; void f(int a){return;} void f(int a,int b=1){return;} int main(){ f(10); // Compile error here ! return 0; }