Widget::Widget(Widget&& w) { this->ptr = w.ptr; // shallow copy w.ptr = nullptr; // nullify the source }
auto* p2 = std::exchange( p1, nullptr );