/* Two exact matches */ #include #include using namespace std; void f(long int i){ cout << "f(long int)" << endl; } void f(short int i){ cout << "f(short int)" << endl; } int main(){ long int a = 5; f(a); // exact match: f(long int) short int b = 5; f(b); // exact match: f(short int) }