Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
sepcomp-cci-copies
/
foo.rs
blob: ba251fcb0ac24c99bf9b22c4868a5c710a6d65f8 [
file
] [
log
] [
blame
] [
edit
]
extern
crate cci_lib
;
use
cci_lib
::
cci_fn
;
fn
call1
()
->
usize
{
cci_fn
()
}
mod
a
{
use
cci_lib
::
cci_fn
;
pub
fn
call2
()
->
usize
{
cci_fn
()
}
}
mod
b
{
pub
fn
call3
()
->
usize
{
0
}
}
fn
main
()
{
call1
();
a
::
call2
();
b
::
call3
();
}