You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
14 lines
93 B
C++
14 lines
93 B
C++
|
|
#include <exception>
|
||
|
|
|
||
|
|
void
|
||
|
|
throws_int ()
|
||
|
|
{
|
||
|
|
throw 5;
|
||
|
|
}
|
||
|
|
|
||
|
|
int
|
||
|
|
main ()
|
||
|
|
{
|
||
|
|
throws_int();
|
||
|
|
}
|