diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/completion-crash1/main.cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/completion-crash1/main.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/completion-crash1/main.cpp b/lldb/packages/Python/lldbsuite/test/expression_command/completion-crash1/main.cpp deleted file mode 100644 index 7b123c0662d..00000000000 --- a/lldb/packages/Python/lldbsuite/test/expression_command/completion-crash1/main.cpp +++ /dev/null @@ -1,12 +0,0 @@ -namespace std { -struct a { - a() {} - a(a &&); -}; -template <class> struct au { - a ay; - ~au() { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList()) - } -}; -} -int main() { std::au<int>{}; } |