[clang] [Clang] Fix a crash on invalid concept (PR #150186)

Younan Zhang via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 23 02:36:22 PDT 2025


================
@@ -588,6 +588,9 @@ static bool CheckConstraintSatisfaction(
     return true;
 
   for (const AssociatedConstraint &AC : AssociatedConstraints) {
+    if (AC.isNull())
+      return true;
----------------
zyn0217 wrote:

Can we continue?

https://github.com/llvm/llvm-project/pull/150186


More information about the cfe-commits mailing list