summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-ctor12.C
blob: 42ca30a38ce10b11720312db3e6175e2c6136b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/55753
// { dg-do compile { target c++11 } }

template <typename Tp>
struct C {
  C() = default;
  constexpr C(const Tp& r) { }
};

template <typename Tp>
struct B {
  B() {
    C<double> cpl = C<double>((true ? 1.0 : C<double>()));
  }
};