2022-04-12 04:09:34 -05:00
|
|
|
#![warn(clippy::pub_use)]
|
|
|
|
#![allow(unused_imports)]
|
|
|
|
#![no_main]
|
|
|
|
|
|
|
|
pub mod outer {
|
|
|
|
mod inner {
|
|
|
|
pub struct Test {}
|
|
|
|
}
|
|
|
|
// should be linted
|
|
|
|
pub use inner::Test;
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: using `pub use`
|
2022-04-12 04:09:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// should not be linted
|
|
|
|
use std::fmt;
|