Sign in
llvm
/
lldb
/
master
/
.
/
packages
/
Python
/
lldbsuite
/
test
/
commands
/
expression
/
completion-crash1
/
main.cpp
blob: 7b123c0662d3eb94962843e320bf2f88594b2bc0 [
file
] [
log
] [
blame
]
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>
{};
}