teak-llvm/lldb/packages/Python/lldbsuite/test/expression_command/completion-crash1/main.cpp
Raphael Isemann 3e85b6f3bd [lldb][NFC] Check in crashing test case
llvm-svn: 367307
2019-07-30 12:20:03 +00:00

13 lines
235 B
C++

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>{}; }