[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / gmodules-deduction-guide.h
blob47b5931083af1c3e61cdb40da2b40df1ecb594c1
1 struct A {
2 };
4 template <class T>
5 struct S{
6 S(const A &);
7 };
9 S(const A&) -> S<A>;
11 typedef decltype(S(A())) Type0;