xref: /llvm-project/lldb/test/API/tools/lldb-dap/repl-mode/main.cpp (revision 33bf08ec36efc2fc2df8217eddd751cef9bc6be6)

noop()1 void noop() {}
2 
fun()3 void 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 
main()11 int main() {
12   fun();
13   noop(); // breakpoint 2
14   return 0;
15 }
16