rust/tests/ui/pub_use.rs
2022-05-05 15:12:52 +01:00

14 lines
220 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;
}
// should not be linted
use std::fmt;