blob: 3cfc23a210e9655755eba9582ec59fd0c07169ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// PR c++/91353 - P1331R2: Allow trivial default init in constexpr contexts.
// { dg-do compile { target c++20 } }
struct E {
constexpr E() = default;
constexpr E(int) {}
};
struct W {
[[no_unique_address]] E e;
int i;
constexpr W(int) : e(8), i(11) {}
};
constexpr W w = W(42);
struct S {
E e;
int i;
constexpr S() : e{}, i(11) { }
};
constexpr S s;
struct S2 {
[[no_unique_address]] E e;
int i;
constexpr S2() : e{}, i(11) { }
};
constexpr S2 s2;
|