This is an unofficial snapshot of the ISO/IEC JTC1 SC22 WG21 Core Issues List revision 116c. See http://www.open-std.org/jtc1/sc22/wg21/ for the official list.

2025-03-27


3010. constexpr placement-new should require transparent replaceability

Section: 7.7  [expr.const]     Status: open     Submitter: Richard Smith     Date: 2025-03-16

Consider:

  struct A { int n; };
  struct B : A { int m; };

  constexpr int f() {
   B b = {{0}, 0};
   A *p = &b;
   new (p) A{1};     // does not transparently replace *p
   return p->n;      // UB, p refers to out-of-lifetime object
  }
  constexpr int k = f();

It seems unreasonable to expect implementations to track situations where a placement-new evaluations that don't transparently replace the original object.

The status quo wording in 7.7 [expr.const] bullet 10.18.2 involving "similar" was added by issue 2922.

Suggested resolution:

Change in 7.7 [expr.const] bullet 10.18.2 as follows:

An expression E is a core constant expression unless the evaluation of E, following the rules of the abstract machine (6.9.1 [intro.execution]), would evaluate one of the following: