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