llvm-project/lldb/test/Shell/Reproducer/Modules/Inputs/main.cpp

10 lines
118 B
C++

#include "Foo.h"
void stop() {}
int main(int argc, char **argv) {
Foo foo;
stop(); // break here.
return 0;
}