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