brintos

brintos / llvm-project-archived public Read only

0
0
Text · 93 B · 76cb227 Raw
14 lines · cpp
1#include <exception>2 3void4throws_int ()5{6    throw 5;7}8 9int10main ()11{12    throws_int();13}14