我有一个带有已删除析构函数的类(实际上,它需要外部帮助才能被销毁):structindestructible{indestructible(indestructible&&);~indestructible()=delete;};当我尝试使用它的移动构造函数时,编译器会报错:structuser{indestructibleind;user(indestructible&&ind):ind(std::move(ind)){}};indestructible.cc:11:3:error:attempttouseadeletedfunctionuser(indestructible&&in