diff options
Diffstat (limited to 'lldb/test/Shell/Reproducer/Modules/Inputs/main.cpp')
-rw-r--r-- | lldb/test/Shell/Reproducer/Modules/Inputs/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/test/Shell/Reproducer/Modules/Inputs/main.cpp b/lldb/test/Shell/Reproducer/Modules/Inputs/main.cpp new file mode 100644 index 00000000000..e6a331bb405 --- /dev/null +++ b/lldb/test/Shell/Reproducer/Modules/Inputs/main.cpp @@ -0,0 +1,9 @@ +#include "Foo.h" + +void stop() {} + +int main(int argc, char **argv) { + Foo foo; + stop(); // break here. + return 0; +} |