[Bug c++/79982] Compiler crashes when using illegal concepts (nested requirements)

2020-08-07 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79982 Jonathan Wakely changed: What|Removed |Added Resolution|--- |FIXED Status|UNCONFIRMED

[Bug c++/79982] Compiler crashes when using illegal concepts (nested requirements)

2019-10-14 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79982 --- Comment #1 from Jonathan Wakely --- No crash on current trunk, with an updated example using C++2a syntax: template concept Void = __is_same_as(T, void); template concept my_concept = requires(T t) { requires requires (int val) { {