simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / rv-conv2.C
blob2f2a1fa702a512cec5443f55b77f4bc77454d4b3
1 // PR c++/89705
2 // { dg-do compile { target c++11 } }
4 struct W { operator const volatile int(); }; // { dg-warning "deprecated" "" { target c++2a } }
5 const int& rci = W();
7 struct X { operator const int(); };
8 int&& rri = X();
10 struct Y { operator volatile int(); }; // { dg-warning "deprecated" "" { target c++2a } }
11 int&& rri2 = Y();
13 struct Z { operator const volatile int(); }; // { dg-warning "deprecated" "" { target c++2a } }
14 volatile int&& rri3 = Z();
16 enum E { A };
17 struct S { operator const E(); };
18 E&& rre = S();