diff options
Diffstat (limited to 'lldb/test/functionalities/breakpoint/cpp_exception/main.cpp')
| -rw-r--r-- | lldb/test/functionalities/breakpoint/cpp_exception/main.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lldb/test/functionalities/breakpoint/cpp_exception/main.cpp b/lldb/test/functionalities/breakpoint/cpp_exception/main.cpp new file mode 100644 index 00000000000..76cb22735a7 --- /dev/null +++ b/lldb/test/functionalities/breakpoint/cpp_exception/main.cpp @@ -0,0 +1,13 @@ +#include <exception> + +void +throws_int () +{ + throw 5; +} + +int +main () +{ + throws_int(); +} |

