Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/avoid_debugging
/
.
/
tests
/
invoke_i.cpp
blob: 214c6858ef46db58e5fdd0c23c9ab57698242566 [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
int
func1
()
{
throw
1
;
}
typedef
int
(*
foo
)(
void
);
int
main
()
{
foo f
=
func1
;
try
{
f
();
}
catch
(...)
{
}
}