]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/single_component_path_imports_self_after.rs
Merge commit '0eff589afc83e21a03a168497bbab6b4dfbb4ef6' into clippyup
[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() {}