[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / commands / expression / regression-access-function-template-in-record / main.cpp
blob02f15c295c2d32043ae27a340de2f2809f6b7939
1 namespace n {
2 template <class> class a {};
3 template <class b> struct shared_ptr {
4 template <class...>
5 static void make_shared() { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
6 typedef a<b> c;
7 c d;
9 };
10 } // namespace n
11 int main() { n::shared_ptr<int>::make_shared(); }