diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/completion-crash2/main.cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/completion-crash2/main.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/completion-crash2/main.cpp b/lldb/packages/Python/lldbsuite/test/expression_command/completion-crash2/main.cpp deleted file mode 100644 index 02f15c295c2..00000000000 --- a/lldb/packages/Python/lldbsuite/test/expression_command/completion-crash2/main.cpp +++ /dev/null @@ -1,11 +0,0 @@ -namespace n { -template <class> class a {}; -template <class b> struct shared_ptr { - template <class...> - static void make_shared() { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList()) - typedef a<b> c; - c d; - } -}; -} // namespace n -int main() { n::shared_ptr<int>::make_shared(); } |