simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / temp-extend2.C
blob0b904e3ffbcbb0215985118ed46e48ac223e8fa4
1 // PR c++/92831
2 // { dg-do run { target c++11 } }
4 template<typename T> using id = T;
5 struct S { S () { s++; } ~S () { s--; } S (int) { s++; } static int s; };
6 int S::s = 0;
8 void
9 bar (bool cond, bool cond2)
11   if (S::s != (cond ? cond2 ? 7 : 5 : cond2 ? 8 : 9))
12     __builtin_abort ();
15 void
16 foo (bool cond, bool cond2)
18   int i = 1;
19   // temporary array has same lifetime as a
20   S&& a = id<S[3]>{1, 2, 3}[i];
21   // temporary S has same lifetime as b
22   const S& b = static_cast<const S&>(0);
23   // exactly one of the four temporaries is lifetime-extended
24   S&& c = cond ? cond2 ? id<S[3]>{1, 2, 3}[i] : static_cast<S&&>(0)
25                : cond2 ? id<S[4]>{1, 2, 3, 4}[i] : id<S[5]>{1, 2, 3, 4, 5}[i];
26   bar (cond, cond2);
29 int
30 main ()
32   foo (true, true);
33   foo (true, false);
34   foo (false, true);
35   foo (false, false);