aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/bind.C
blob: 42a2ac203dba9d0d4890727c594ae9be996eb0fe (plain)
1
2
3
4
5
6
7
8
// { dg-options "--std=c++0x" }
struct S{};
void f(S&&);

int main()
{
  f(S());
}