Home
last modified time | relevance | path

Searched refs:tup_impl (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Ddeduction.cpp250 template <int i, typename... Es> struct tup_impl;
252 template <int i> struct tup_impl<i> {}; // empty tail struct
255 struct tup_impl<i, Head, Tail...> : tup_impl<i + 1, Tail...> { struct
260 template <typename... Es> struct tup : tup_impl<0, Es...> {};
263 Head &get_helper(tup_impl<i, Head, Tail...> &t) { in get_helper()
268 Head const &get_helper(tup_impl<i, Head, Tail...> const &t) { in get_helper()