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