bolt/deps/llvm-18.1.8/lldb/test/API/commands/expression/completion-in-lambda-and-unnamed-class/main.cpp

12 lines
281 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
int main() {
[]()
{ //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
}
();
struct {
void f()
{ //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
}
} A;
}