summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/single_component_path_imports_nested_first.rs
blob: b4a1ce1d6aec49e364ee05ee5744b49e9d458996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![warn(clippy::single_component_path_imports)]
#![allow(unused_imports)]
//@no-rustfix
use regex;
//~^ ERROR: this import is redundant
//~| NOTE: `-D clippy::single-component-path-imports` implied by `-D warnings`

use serde as edres;

pub use serde;

fn main() {
    regex::Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap();
}

mod root_nested_use_mod {
    use {regex, serde};
    //~^ ERROR: this import is redundant
    //~| ERROR: this import is redundant
    #[allow(dead_code)]
    fn root_nested_use_mod() {}
}