Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/basic.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3744,7 +3744,7 @@
constexpr A v2{.i=1}; // OK, the constituent values are \tcode{\{v2.i\}}
constexpr A v3 = []{
A a;
std::start_lifetime(a.arr); // OK, arr is now the active element of the union
std::start_lifetime(a.arr); // OK, \tcode{arr} is now the active element of the union
new (&a.arr[1]) int(1);
a.arr[2] = 2;
return a;
Expand Down
Loading