brintos

brintos / llvm-project-archived public Read only

0
0
Text · 335 B · 02f15c2 Raw
12 lines · cpp
1namespace n {2template <class> class a {};3template <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;8  }9};10} // namespace n11int main() { n::shared_ptr<int>::make_shared(); }12