[clang] [clang][Sema] fix Crash when lookup finds UnresolvedUsingValueDecl followed by '<' (PR #190322)
via cfe-commits
cfe-commits at lists.llvm.org
Sun Apr 12 18:04:24 PDT 2026
================
@@ -0,0 +1,33 @@
+// RUN: %clang_cc1 -fsyntax-only -verify -std=c++20 %s
+// expected-no-diagnostics
+
+// This is a regression test that verifies handling a mix of using-declarations
+// from dependent and non-dependent base classes does not cause name lookup
+// to crash when a dependent entity cannot be converted to a TemplateDecl.
----------------
firstmoonlight wrote:
Thanks, I have add namespace `GH174951`
https://github.com/llvm/llvm-project/pull/190322
More information about the cfe-commits
mailing list