Lines Matching full:constexpr
5 constexpr U u1 = U();
6 constexpr U u2 {};
7 constexpr U u3 { 'x' };
20 constexpr A a1 {};
21 constexpr A a2 { 8 };
22 constexpr A a3 { 1, 2, { 3 } };
23 constexpr A a4 { 1, 2, { .d = 3.0 } };
33 constexpr int f() { return n * 5; }
37 constexpr B b2 { 2 };
55 constexpr B(int k) : d(1.23), k(k) {}
58 constexpr int f() const { return A{k}.b; }