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;
}