mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
10 lines
150 B
Rust
10 lines
150 B
Rust
//@ run-rustfix
|
|
#![allow(unused_imports)]
|
|
fn main() {
|
|
use std::mem; //~ ERROR module import `mem` is private
|
|
}
|
|
|
|
pub mod foo {
|
|
use std::mem;
|
|
}
|