Sign in
android
/
platform
/
external
/
compiler-rt
/
b6f970d8226d3a52df2637a8eb21c97fa996530e
/
.
/
test
/
profile
/
Inputs
/
extern_template.cpp
blob: 98c6c16b4a8a8baedfc30e2e80c330a2da88ea8a [
file
] [
log
] [
blame
]
#define
DEF
#include
"extern_template.h"
#undef
DEF
extern
int
bar
();
extern
int
foo
();
extern
Test
<int>
TO
;
int
main
()
{
foo
();
int
R
=
bar
();
if
(
R
!=
10
)
return
1
;
return
0
;
}