Files
llvm-project/lldb/test/functionalities/breakpoint/cpp_exception/main.cpp
T

14 lines
93 B
C++
Raw Normal View History

#include <exception>
void
throws_int ()
{
throw 5;
}
int
main ()
{
throws_int();
}