[clang] [clang] Fix code completion crash in lambda trailing requires-clause (PR #206373)

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 1 04:41:05 PDT 2026


================
@@ -2625,9 +2625,11 @@ AddOrdinaryNameResults(SemaCodeCompletion::ParserCompletionContext CCC,
 
     // "return expression ;" or "return ;", depending on the return type.
     QualType ReturnType;
-    if (const auto *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext))
-      ReturnType = Function->getReturnType();
-    else if (const auto *Method = dyn_cast<ObjCMethodDecl>(SemaRef.CurContext))
+    if (const auto *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext)) {
+      if (!Function->getType().isNull())
----------------
AaronBallman wrote:

Thank you for checking!

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


More information about the cfe-commits mailing list