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
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}}
11 X x
; // expected-error {{no viable constructor or deduction guide for deduction of template arguments of 'X'}}