fork download
  1. #include <iostream>
  2.  
  3. template <typename T>
  4. struct vec {
  5. void add(const T& a) {
  6. T t(a);
  7. }
  8.  
  9. void add(T&& a) {
  10.  
  11. }
  12. };
  13.  
  14. struct mov {
  15. mov() = default;
  16. mov(const mov&) = delete;
  17. mov(mov&&) = default;
  18. };
  19.  
  20. int main() {
  21. mov m;
  22.  
  23. vec<mov> v;
  24.  
  25. v.add(std::move(m));
  26.  
  27. return 0;
  28. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty