OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / bind.C
1 // { dg-options "--std=c++0x" }
2 struct S{};
3 void f(S&&);
4
5 int main()
6 {
7   f(S());
8 }