1void noop() {}
2
3void fun() {
4 int user_command = 474747;
5 int alias_command = 474747;
6 int alias_command_with_arg = 474747;
7 int platform = 474747; // built-in command
8 noop(); // breakpoint 1
9}
10
11int main() {
12 fun();
13 noop(); // breakpoint 2
14 return 0;
15}
16

source code of lldb/test/API/tools/lldb-dap/repl-mode/main.cpp