fork download
  1. #include<utility>
  2.  
  3. void Third (int&& a)
  4. {}
  5.  
  6. template<typename... intrgs>
  7. void Second (intrgs&&... args)
  8. {
  9. Third(std::move(args...));
  10. }
  11.  
  12. void First (int&& a)
  13. {
  14. Second(std::move(a));
  15. Third(std::move(a));
  16. }
  17.  
  18. int main ()
  19. {
  20. First(0);
  21. }
  22.  
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty