c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / bind.C
blob9b7ce7dc0b9e3b01c0692b5c8ebfb40827506268
1 // { dg-do compile { target c++11 } }
2 struct S{};
3 void f(S&&);
5 int main()
7   f(S());