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

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