[PATCH] D146178: [Clang][Sema] Fix comparison of constraint expressions
Alexander Shaposhnikov via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue May 2 13:04:02 PDT 2023
alexander-shaposhnikov added a comment.
reduced test case:
template <typename>
concept Concept = false;
struct Foo {
template <typename>
struct result {};
template <typename _Tp>
requires(Concept<_Tp>)
struct result<_Tp>;
};
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146178/new/
https://reviews.llvm.org/D146178
More information about the cfe-commits
mailing list