OSDN Git Service

2007-11-09 Douglas Gregor <doug.gregor@gmail.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / cast-bug.C
1 // { dg-options "--std=c++0x" }
2 struct S
3 {
4   S();
5   S(S &&);
6 private:
7   S(S &);
8 };
9
10 S f()
11 {
12   S s;
13   return static_cast<S&&>(s);
14 }