fork download
  1. #include<iostream>
  2. namespace a{
  3. void f(int a){ std::cout<< "a::f(int)";}
  4. }
  5.  
  6. using a::f;
  7. void f(double a){ std::cout<< "f(double)";}
  8.  
  9. int main(){
  10. f(1.11);
  11. }
  12.  
Success #stdin #stdout 0s 15224KB
stdin
Standard input is empty
stdout
f(double)