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:
0#include <utility>
1void Eat(int&& food) { food = 0; };
2int main() {
3 int food{2};
4 Eat(std::move(food));
5 Eat(std::move(food)); // This should err
6}