[Lldb-commits] [PATCH] D110216: [clang] retain type sugar in auto / template argument deduction
Matheus Izvekov via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 15 08:13:40 PST 2021
mizvekov added a comment.
FYI this is a minimal repro taken from Martin's preprocessed source (Thanks!):
template <class> struct a { using b = const float; };
template <class c> using d = typename a<c>::b;
template <class c> void e(d<c> *, c) {}
template void e(typename a<void>::b *, int);
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110216/new/
https://reviews.llvm.org/D110216
More information about the lldb-commits
mailing list