[Bug c++/82019] [concepts] ICE if concept is not satisfied

2021-08-08 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82019 Andrew Pinski changed: What|Removed |Added Resolution|--- |FIXED Status|UNCONFIRMED

[Bug c++/82019] [concepts] ICE if concept is not satisfied

2019-10-15 Thread antoshkka at gmail dot com
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

[Bug c++/82019] [concepts] ICE if concept is not satisfied

2018-10-31 Thread antoshkka at gmail dot com
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).