simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist132.C
blob34e0307cbbc04f1a0bd6e84714b19a152968b442
1 // PR c++/108071
2 // { dg-do compile { target c++11 } }
4 #include <initializer_list>
6 template< typename T1, typename T2 = void >
7 struct ConstCharArrayDetector
9     static const bool ok = false;
11 template< std::size_t N, typename T >
12 struct ConstCharArrayDetector< const char[ N ], T >
14     typedef T Type;
17 struct Dummy { };
19 struct OUString
21   template<typename T>
22     OUString(T&, typename ConstCharArrayDetector<T, Dummy>::Type = Dummy())
23     { }
26 struct Sequence {
27   Sequence(std::initializer_list<OUString>);
30 Sequence s = {""};