blob: 47b5931083af1c3e61cdb40da2b40df1ecb594c1 [file] [log] [blame]
struct A {
};
template <class T>
struct S{
S(const A &);
};
S(const A&) -> S<A>;
typedef decltype(S(A())) Type0;