blob: 04ec679c4d707c8244b30ea7a03f0131b944ed1c [file] [log] [blame]
//@ run-rustfix
#![allow(unused_imports)]
fn main() {
use foo::mem; //~ ERROR module import `mem` is private
}
pub mod foo {
use std::mem;
}