Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
imports
/
private-std-reexport-suggest-public.fixed
blob: 6374ba00bb4dc614e25bda49310cad920f258454 [
file
] [
log
] [
blame
]
//@ run-rustfix
#![allow(unused_imports)]
fn main
()
{
use
std
::
mem
;
//~ ERROR module import `mem` is private
}
pub mod foo
{
use
std
::
mem
;
}