brintos

brintos / llvm-project-archived public Read only

0
0
Text · 118 B · 47b5931 Raw
12 lines · c
1struct A {2};3 4template <class T>5struct S{6  S(const A &);7};8 9S(const A&) -> S<A>;10 11typedef decltype(S(A())) Type0;12