xref: /llvm-project/lldb/test/API/commands/expression/completion-in-lambda-and-unnamed-class/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)

main()1 int main() {
2   []()
3   { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
4   }
5   ();
6   struct {
7       void f()
8       { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
9       }
10   } A;
11 }
12