https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120142
Patrick Palka <ppalka at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Ever confirmed|0 |1
Last reconfirmed| |2025-05-12
Status|UNCONFIRMED |NEW
--- Comment #2 from Patrick Palka <ppalka at gcc dot gnu.org> ---
A workaround is to replace the constrained auto template parameter with a
requires-clause:
-template <concepts::property auto prop, class> _column<prop> column;
+template <auto prop, class> requires concepts::property<decltype(prop)>
_column<prop> column;