1#include <exception>
2
3void
4throws_int ()
5{
6 throw 5;
7}
8
9int
10main ()
11{
12 throws_int();
13}
14

source code of lldb/test/API/functionalities/breakpoint/cpp_exception/main.cpp