// { dg-do compile { target c++11 } } // PR c++/33045 int && f (); template struct is_same { static const bool value = false; }; template struct is_same { static const bool value = true; }; static_assert(is_same::value, "decltype of rvalue reference");