summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/module_inception.rs
blob: ad46e0c29aee3f38035b06b9ef454c267c0d54f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#![warn(clippy::module_inception)]

pub mod foo2 {
    pub mod bar2 {
        pub mod bar2 {
            //~^ ERROR: module has the same name as its containing module
            //~| NOTE: `-D clippy::module-inception` implied by `-D warnings`
            pub mod foo2 {}
        }
        pub mod foo2 {}
    }
    pub mod foo2 {
        //~^ ERROR: module has the same name as its containing module
        pub mod bar2 {}
    }
}

mod foo {
    mod bar {
        mod bar {
            //~^ ERROR: module has the same name as its containing module
            mod foo {}
        }
        mod foo {}
    }
    mod foo {
        //~^ ERROR: module has the same name as its containing module
        mod bar {}
    }
}

// No warning. See <https://github.com/rust-lang/rust-clippy/issues/1220>.
mod bar {
    #[allow(clippy::module_inception)]
    mod bar {}
}

fn main() {}