]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/single_component_path_imports_self_after.rs
Rollup merge of #90529 - b-naber:reborrows-consts, r=lcnr
[rust.git] / src / tools / clippy / tests / ui / single_component_path_imports_self_after.rs
1 #![warn(clippy::single_component_path_imports)]
2 #![allow(unused_imports)]
3
4 use self::regex::{Regex as xeger, RegexSet as tesxeger};
5 pub use self::{
6     regex::{Regex, RegexSet},
7     some_mod::SomeType,
8 };
9 use regex;
10
11 mod some_mod {
12     pub struct SomeType;
13 }
14
15 fn main() {}