blob: 0ee6e0535dcbc12ba73504d7bcd8c5063184e314 [file] [log] [blame]
// PR c++/86981
// { dg-do compile { target c++11 } }
// { dg-options "-Wpessimizing-move" }
#include <string>
#include <tuple>
#include <utility>
std::tuple<std::string, std::string>
foo ()
{
std::pair<std::string, std::string> p;
return std::move (p);
}