rust/tests/ui/pub_use.rs
2025-02-15 13:38:42 +01:00

15 lines
237 B
Rust

#![warn(clippy::pub_use)]
#![allow(unused_imports)]
#![no_main]
pub mod outer {
mod inner {
pub struct Test {}
}
// should be linted
pub use inner::Test;
//~^ pub_use
}
// should not be linted
use std::fmt;