Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / 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());