2 // { dg-do compile { target c++14 } }
9 constexpr operator B() { return B{}; }
20 constexpr C c4 = { 42 };
30 constexpr D d4 = { 42 };
40 constexpr E e4 = { 42 };
50 constexpr F f4 = { 42 };
53 g (C c5 = C{}, C c6 = C{ 42 }, D d5 = D{}, D d6 = D{ 42 },
54 E e5 = E{}, E e6 = E{ 42 }, F f5 = F{}, F f6 = F{ 42 })