Sign in
ara-mdk
/
platform
/
ndk
/
33583eb561483b3e78620c07a4dbf41110f1a8dc
/
.
/
tests
/
build
/
multiple-static-const
/
jni
/
main.cpp
blob: 14b07b97515d21317047971895d6a16f9f7574aa [
file
] [
log
] [
blame
]
#include
"main.h"
const
int
Foo
::
CONST_1
=
42
;
const
double
Foo
::
CONST_2
=
3.14159265
;
extern
void
foo
(
void
);
int
main
(
void
)
{
foo
();
return
0
;
}