rustc/tests/ui/imports/private-std-reexport-suggest-public.fixed
2024-06-21 09:39:33 +02:00

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