Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
use_3.rs
blob: 2cfe38f47b2647a58fe2c45e18b8a8500d7456dd [
file
] [
log
] [
blame
]
mod
intrinsic
{
pub
fn
foo
()
{}
}
pub
mod
a
{
pub
fn
b
()
{
use
crate
::
intrinsic
;
intrinsic
::
foo
();
}
}