OpenGrok
Cross Reference: throw.cpp
xref
: /
ndk
/
tests
/
build
/
b8247455-hidden-cxa
/
jni
/
throw.cpp
Home
|
History
|
Annotate
|
Download
|
only in
jni
1
extern
int
my_idiv
(
int
a,
int
b);
2
int
my_thorw
()
3
{
4
my_idiv
(
3
,
5
);
5
throw
20
;
6
}
7