Sign in
bazel
/
rules_cc
/
refs/heads/main
/
.
/
tests
/
local_includes
/
binary.c
blob: 04b5520ff1731e874c323877e03b0642c6f3cab0 [
file
] [
edit
]
#include
"binary_helper.h"
#include
"public.h"
#if __has_include("private.h")
#error
"private.h should not be on the include path"
#endif
int
main
()
{
if
(
foo
()
+
helper
()
==
42
)
{
return
0
;
}
else
{
return
1
;
}
}