simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-string2.C
bloba64d815a7bab1a83b2ed35c3c89e3a0bb507349f
1 // PR c++/91165
2 // { dg-do compile { target c++11 } }
3 // { dg-additional-options -O }
5 template <typename T> constexpr T bar (T c) { return c; }
6 template <typename T, typename U> struct S {
7   T f;
8   U g;
9 };
10 template <typename T, typename U>
11 constexpr S<T, U> foo (T &&c, U h) { return S<T, U> {c, bar (h)}; }
12 void baz (int a) { foo (a, ""); }
13 void qux () { foo (0, ""); }