https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110197

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ppalka at gcc dot gnu.org

--- Comment #3 from Patrick Palka <ppalka at gcc dot gnu.org> ---
More reduced:

struct Currency {
  constexpr Currency(int) { }
};
constexpr int f() { return __builtin_is_constant_evaluated(); };
constexpr Currency _M_elems[1] = {Currency{f()}};

Reply via email to