xref: /llvm-project/lldb/test/API/functionalities/breakpoint/cpp_exception/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include <exception>
2 
3 void
throws_int()4 throws_int ()
5 {
6     throw 5;
7 }
8 
9 int
main()10 main ()
11 {
12     throws_int();
13 }
14