rust-clippy/tests/ui/pub_use.rs
2023-08-22 17:18:11 +02:00

15 lines
252 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;
//~^ ERROR: using `pub use`
}
// should not be linted
use std::fmt;