simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / elision_neg.C
blob6a181b27d3761586d1b65df7b60a2084fee98404
1 // I, Howard Hinnant, hereby place this code in the public domain.
3 // Test: Implicit cast to rvalue when eliding copy
5 // { dg-do compile { target c++11 } }
7 template <bool> struct sa;
8 template <> struct sa<true> {};
10 struct one   {char x[1];};
11 struct two   {char x[2];};
13 class move_only
15     move_only(const move_only&); // { dg-message "private" }
16     move_only& operator=(const move_only&);
17 public:
18     move_only() {}
19     move_only(move_only&&) {}
20     move_only& operator=(move_only&&) {return *this;}
23 move_only
24 test1()
26     static move_only x;
27     return x;  //  { dg-error "within this context" }
30 move_only
31 test2(move_only&& x)
33     return x;  //  { dg-error "within this context" "" { target c++17_down } }
36 int main()
38     move_only t1 = test1();
39     move_only t2 = test2(move_only());
40     return 0;
43 bool b = true;