Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
apple_support
/
HEAD
/
.
/
test
/
rpaths
/
test.cc
blob: 8e7e495a02160b21a18417ce8fdfab46812e1f54 [
file
] [
log
] [
blame
]
int
foo
();
int
bar
();
int
baz
();
int
main
()
{
int
result
=
foo
()
+
bar
()
+
baz
();
if
(
result
==
56
)
{
return
0
;
}
else
{
return
result
;
}
}