Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
imports
/
import-loop.rs
blob: b48783401455dadc5739706b57d237ad798c40ff [
file
] [
log
] [
blame
]
// error-pattern:import
use
y
::
x
;
mod
y
{
pub
use
y
::
x
;
}
fn
main
()
{
}