fork(4) download
  1. #include <iostream>
  2.  
  3. decltype(auto) incr(auto x)
  4. {
  5. return x + 1;
  6. }
  7.  
  8. int main()
  9. {
  10. std::cout << incr(1) << " " << incr(1.5) << std::endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
2 2.5