// { dg-options "-std=c++0x" } // 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");