AmbushedRaccoon

Move Semantics

Aug 2nd, 2025
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.12 KB | None | 0 0
  1. struct X {
  2.     std::mutex m;
  3.     X(X&&) = default; // что произойдёт?
  4. };
  5.  
  6. int main()
  7. {
  8.     X x;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment