2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2024-12-19 01:24:05 +00:00
rust-clippy/tests/ui/pub_use.rs

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;