[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / SemaTemplate / nested-implicit-deduction-guides.cpp
blob10b70f9c8c4f357318d8da49a74def8197dfa136
1 // RUN: %clang_cc1 -std=c++17 -verify %s
2 // expected-no-diagnostics
4 template<class T> struct S {
5 template<class U> struct N {
6 N(T) {}
7 N(T, U) {}
8 template<class V> N(V, U) {}
9 };
12 S<int>::N x{"a", 1};
14 using T = decltype(x);
15 using T = S<int>::N<int>;