Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_rust
/
dca03c94f64a44543a9b94793c234c7fc54a359b
/
.
/
test
/
linker_inputs_propagation
/
baz.cc
blob: 91805e8b490873b61e043f1779d2006e2d422a66 [
file
] [
log
] [
blame
]
#include
<assert.h>
#include
<inttypes.h>
#include
<stdlib.h>
extern
"C"
int32_t
double_foo
();
int
main
(
int
argc
,
char
**
argv
)
{
assert
(
double_foo
()
==
84
);
return
EXIT_SUCCESS
;
}