diff --git a/clang/lib/AST/DeclBase.cpp b/clang/lib/AST/DeclBase.cpp --- a/clang/lib/AST/DeclBase.cpp +++ b/clang/lib/AST/DeclBase.cpp @@ -1644,9 +1644,9 @@ DeclContext::lookup_result DeclContext::lookup(DeclarationName Name) const { - assert(getDeclKind() != Decl::LinkageSpec && - getDeclKind() != Decl::Export && - "should not perform lookups into transparent contexts"); + // For transparent DeclContext, we should lookup in their enclosing context. + if (getDeclKind() == Decl::LinkageSpec || getDeclKind() == Decl::Export) + return getParent()->lookup(Name); const DeclContext *PrimaryContext = getPrimaryContext(); if (PrimaryContext != this) diff --git a/clang/test/Modules/Inputs/template_name_lookup/foo.cppm b/clang/test/Modules/Inputs/template_name_lookup/foo.cppm new file mode 100644 --- /dev/null +++ b/clang/test/Modules/Inputs/template_name_lookup/foo.cppm @@ -0,0 +1,3 @@ +export module foo; +export template +class X {}; diff --git a/clang/test/Modules/template_name_lookup.cpp b/clang/test/Modules/template_name_lookup.cpp new file mode 100644 --- /dev/null +++ b/clang/test/Modules/template_name_lookup.cpp @@ -0,0 +1,11 @@ +// RUN: rm -rf %t +// RUN: mkdir -p %t +// RUN: %clang_cc1 -std=c++20 %S/Inputs/template_name_lookup/foo.cppm -emit-module-interface -o %t/foo.pcm +// RUN: %clang_cc1 -std=c++20 -fprebuilt-module-path=%t %s -fsyntax-only -verify + +import foo; +void use() { + X x; // expected-error {{no viable constructor or deduction guide for deduction of template arguments of 'X'}} + // expected-note@Inputs/template_name_lookup/foo.cppm:3 {{candidate template ignored: couldn't infer template argument 'T'}} + // expected-note@Inputs/template_name_lookup/foo.cppm:3 {{candidate function template not viable: requires 1 argument, but 0 were provided}} +} diff --git a/clang/test/SemaCXX/lookup-template-name-extern-CXX.cpp b/clang/test/SemaCXX/lookup-template-name-extern-CXX.cpp new file mode 100644 --- /dev/null +++ b/clang/test/SemaCXX/lookup-template-name-extern-CXX.cpp @@ -0,0 +1,12 @@ +// Tests that the lookup in transparent declaration context +// (linkage specifiaction context) wouldn't cause compiler crash. +// RUN: %clang_cc1 -std=c++20 %s -fsyntax-only -verify +extern "C++" { +template +class X {}; // expected-note {{candidate template ignored: couldn't infer template argument 'T'}} + // expected-note@-1 {{candidate function template not viable: requires 1 argument, but 0 were provided}} +} + +void foo() { + X x; // expected-error {{no viable constructor or deduction guide for deduction of template arguments of 'X'}} +}