[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / SemaCXX / lookup-template-name-extern-CXX.cpp
blob93e7fb6199354a5761cc1520ec842694149f89ae
1 // Tests that the lookup in transparent declaration context
2 // (linkage specifiaction context) wouldn't cause compiler crash.
3 // RUN: %clang_cc1 -std=c++20 %s -fsyntax-only -verify
4 extern "C++" {
5 template <class T>
6 class X {}; // expected-note {{candidate template ignored: couldn't infer template argument 'T'}}
7 // expected-note@-1 {{candidate function template not viable: requires 1 argument, but 0 were provided}}
10 void foo() {
11 X x; // expected-error {{no viable constructor or deduction guide for deduction of template arguments of 'X'}}