blob: b80580da10c3980a0c27618bd0f601b0d273dbf8 [file] [log] [blame]
//@ check-pass
#![warn(clippy::single_component_path_imports)]
#![allow(unused_imports)]
use regex;
use self::regex::{Regex as xeger, RegexSet as tesxeger};
#[rustfmt::skip]
pub use self::{
regex::{Regex, RegexSet},
some_mod::SomeType,
};
mod some_mod {
pub struct SomeType;
}
fn main() {}