1 // PR c++/86982
2 // { dg-do compile { target c++11 } }
3 
4 #include <utility>
5 
f()6 int&& f() { int i = 0; return std::move(i); } // { dg-warning "reference to local variable" }
g()7 int&& g() { int i = 0; return std::forward<int>(i); } // { dg-warning "reference to local variable" }
h()8 int&& h() { long l = 0; return std::forward<int>(l); } // { dg-warning "reference to temporary" }
9