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

Provided by KDAB

Privacy Policy
Update your C++ knowledge – Modern C++11/14/17 Training
Find out more

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