1 // { dg-do compile { target c++11 } }
2 struct S{};
3 void f(S&&);
4 
main()5 int main()
6 {
7   f(S());
8 }
9