llvm-project/lldb/test/API/commands/gui/basicdebug/main.c

8 lines
112 B
C

extern int func();
int main(int argc, char **argv) {
func(); // Break here
func(); // Second
return 0;
}