fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void
  6. f (double a) //LINE II
  7. {
  8.  
  9. cout << 2 + a << endl;
  10.  
  11. }
  12. template < class A > void
  13. f (A & a) //LINE I
  14. {
  15.  
  16. cout << 1 + a << endl;
  17.  
  18. }
  19.  
  20. int
  21. main ()
  22. {
  23.  
  24. double a = 1.5;
  25.  
  26. f (a); //LINE II
  27.  
  28. return 0;
  29.  
  30. }
  31.  
  32.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
3.5