mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 02:40:45 +00:00
10 lines
150 B
Plaintext
10 lines
150 B
Plaintext
//@ run-rustfix
|
|
#![allow(unused_imports)]
|
|
fn main() {
|
|
use std::mem; //~ ERROR module import `mem` is private
|
|
}
|
|
|
|
pub mod foo {
|
|
use std::mem;
|
|
}
|