summaryrefslogtreecommitdiffstats
path: root/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/main.cpp
blob: 76cb22735a71b85a6604ee30e72e7ff3f1ae05ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <exception>

void
throws_int ()
{
    throw 5;
}

int
main ()
{
    throws_int();
}
OpenPOWER on IntegriCloud