Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
433da1fc047bb39a263eefca4bdb2b1972f1d2ce
/
.
/
tests
/
run-make
/
sepcomp-cci-copies
/
foo.rs
blob: ba251fcb0ac24c99bf9b22c4868a5c710a6d65f8 [
file
] [
log
] [
blame
]
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
();
}