Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
sepcomp
/
auxiliary
/
sepcomp_lib.rs
blob: 1536228c265b256f0f94d6a9a04a2f4501116b41 [
file
] [
log
] [
blame
]
// compile-flags: -C codegen-units=3 --crate-type=rlib,dylib -g
pub
mod
a
{
pub
fn
one
()
->
usize
{
1
}
}
pub
mod
b
{
pub
fn
two
()
->
usize
{
2
}
}
pub
mod
c
{
use
a
::
one
;
use
b
::
two
;
pub
fn
three
()
->
usize
{
one
()
+
two
()
}
}