// { dg-do compile { target c++11 } } // { dg-options "-Wpessimizing-move" } // Define std::move. namespace std { template struct remove_reference { typedef _Tp type; }; template struct remove_reference<_Tp&> { typedef _Tp type; }; template struct remove_reference<_Tp&&> { typedef _Tp type; }; template constexpr typename std::remove_reference<_Tp>::type&& move(_Tp&& __t) noexcept { return static_cast::type&&>(__t); } } struct S { }; S f () { return {std::move(S())}; // { dg-warning "moving a temporary object prevents copy elision" } }