Sign in
cobalt
/
cobalt
/
02dc75a3e28204929da5793da854c523d59e642c
/
.
/
src
/
third_party
/
llvm-project
/
compiler-rt
/
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
;
}