mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
17 lines
342 B
Rust
17 lines
342 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(module_inception)]
|
|
|
|
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 {}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|