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


3009. Unclear rules for constant initialization

Section: 7.7  [expr.const]     Status: open     Submitter: Jim X     Date: 2023-11-08

(From submission #460.)

Consider:

  struct B {
    constexpr ~B(){}      // #1
  };
  struct A {
    constexpr A(const B&){}  // #2
    constexpr ~A(){}
  };
  constexpr A a(B{});  // #3, checks #1 and #2

Subclause 7.7 [expr.const] bullet 6.1 specifies:

A variable v is constant-initializable if

However, a full-expression need not satisfy the syntax of a constant-expression, and indeed, for the example at #3, the only syntactical expression is B{}, but the checking of the constructor of A and the destructor of B is intended to be part of the conditions for constant-initializable, which unsuccessfully attempts to delegate to 7.7 [expr.const] paragraph 22.