Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
notify-all-emit-artifacts
/
lib.rs
blob: 6ed194204b45466dc7ade6f935ad6ad2ea8d56e1 [
file
] [
log
] [
blame
] [
edit
]
fn
one
()
->
usize
{
1
}
pub
mod
a
{
pub
fn
two
()
->
usize
{
::
one
()
+
::
one
()
}
}
pub
mod
b
{
pub
fn
three
()
->
usize
{
::
one
()
+
::
a
::
two
()
}
}
#[
inline
(
never
)]
pub
fn
main
()
{
a
::
two
();
b
::
three
();
}