https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82019
Andrew Pinski changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82019
--- Comment #2 from Antony Polukhin ---
Updated version of the test (works well on GCC 10):
// { dg-options "-std=c++2a" }
template
concept VectorOperations = requires(T& v, const Data& data) {
v += data;
requires __is_same_as(T&, dec
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82019
--- Comment #1 from Antony Polukhin ---
Trunk version of GCC (9.0) does not ICE any more.
This issue could be closed (but I'd appreciate if you could add example from
above to the test suite to avoid regressions).