Without this doc, there is a risk that the setting will be turned off, see #34514.
The reason to disable it is to catch logic bugs, even on trivially copyable types:
#include <utility>
void Eat(int&& food) { food = 0; };
int main() {
int food{2};
Eat(std::move(food));
Eat(std::move(food)); // This should err
}