aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Modules/Inputs/gmodules-deduction-guide.h
blob: 47b5931083af1c3e61cdb40da2b40df1ecb594c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct A {
};

template <class T>
struct S{
  S(const A &);
};

S(const A&) -> S<A>;

typedef decltype(S(A())) Type0;