hppa: Fix decrement_and_branch_until_zero constraint
[official-gcc.git] / gcc / testsuite / g++.dg / debug / pr88181.C
blobfc6f8136b6153f79ce6a4c6579791fa85ebad317
1 // PR c++/88181
2 // { dg-do compile }
3 // { dg-options "-fpack-struct -g -std=c++11" }
5 template <typename T> struct A { typedef T B; };
6 template <typename...> class C;
7 template <typename e> struct D { constexpr D (e) {} };
8 template <int, typename...> struct E;
9 template <int N, typename T, typename... U>
10 struct E<N, T, U...> : E<1, U...>, D<T> {
11   constexpr E (T x, U... y) : E<1, U...>(y...), D<T>(x) {}
13 template <int N, typename T> struct E<N, T> : D<T> {
14   constexpr E (T x) : D<T>(x) {}
16 template <typename T, typename U> struct C<T, U> : E<0, T, U> {
17   constexpr C (T x, U y) : E<0, T, U>(x, y) {}
18   void operator= (typename A<const C>::B);
20 struct F {};
21 struct G {};
23 int
24 main ()
26   F f;
27   G g;
28   constexpr C<F, G> c(f, g);