Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumC++move semantics and rvalue refsSingle-choice MCQ

What is true about the move constructor generated for this class?

struct Widget { std::string name; ~Widget() { /* logging */ } };