fork download
  1. #include<iostream>
  2.  
  3. template<typename T>
  4. void f(T = ""){
  5. std::cout << "Hello" << std::endl;
  6. }
  7.  
  8.  
  9. int main(){
  10. f(1);
  11. }
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
Hello