ChuanqiXu added a comment. I finally found some time to look at the crash. Although I haven't get an idea, I found it crash at the following one too:
template <typename T> concept Constraint = true; template <typename... Signatures> class completion_handler_async_result { public: template <typename Initiation, Constraint RawCompletionToken> static void initiate(Initiation&& initiation, RawCompletionToken&& token); }; template <typename... Signatures> concept Constraint2 = requires(float&& t) { completion_handler_async_result<Signatures...>::initiate(0, 0); }; template <typename T> void use(int F) requires Constraint2<int> {} I am not sure if they are the same problem. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D126907/new/ https://reviews.llvm.org/D126907 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits