mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
15 lines
252 B
Rust
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;
|