1int i;
2struct F {
3 int &r;
4 F() : r(i) {}
5};
6template <class T> struct unique_ptr {
7 F i;
8 unique_ptr() : i() {//%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
9}
10};
11int main() {unique_ptr<F> u; }
12

source code of lldb/test/API/commands/expression/completion-crash-incomplete-record/main.cpp