Sign in
llvm
/
llvm-project
/
b666ac3b63e01bfa602318c877ea2395fea53f89
/
.
/
lldb
/
test
/
API
/
functionalities
/
breakpoint
/
cpp_exception
/
main.cpp
blob: 76cb22735a71b85a6604ee30e72e7ff3f1ae05ec [
file
]
#include
<exception>
void
throws_int
()
{
throw
5
;
}
int
main
()
{
throws_int
();
}