fork(4) download
  1. #include <iostream>
  2.  
  3. template <typename T>
  4. void foo(T& y)
  5. {
  6. y++;
  7. }
  8.  
  9. int main()
  10. {
  11. int x = 5;
  12.  
  13. // Why won't this line work???/
  14. foo(x);
  15.  
  16. std::cout << x;
  17. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
5