bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/gmodules-deduction-guide.h
2025-02-14 19:21:04 +01:00

11 lines
118 B
C++

struct A {
};
template <class T>
struct S{
S(const A &);
};
S(const A&) -> S<A>;
typedef decltype(S(A())) Type0;