blob: 2e8877418a44693b3b19549b6795fc51cc352ebf [file] [edit]
#![warn(clippy::pub_use)]
#![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;