17 lines
283 B
Rust
17 lines
283 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 { //~ ERROR module has the same name as its containing module
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|