summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/private-std-reexport-suggest-public.rs
blob: 1247055af606314d5f48fe42278a8e7cb7ff922e (plain)
1
2
3
4
5
6
7
8
9
// run-rustfix
#![allow(unused_imports)]
fn main() {
    use foo::mem; //~ ERROR module import `mem` is private
}

pub mod foo {
    use std::mem;
}