Why does constructing T from std::move(const_value) commonly call T(const T&) instead of …

from Move semantics
C++23 (GCC 13.3.0) intermediate 1 min

Why does constructing T from std::move(const_value) commonly call T(const T&) instead of T(T&&)?

Report an error