2016-08-16 12:29:21 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
#![deny(module_inception)]
|
|
|
|
|
|
|
|
mod foo {
|
|
|
|
mod bar {
|
2017-02-08 13:58:07 +00:00
|
|
|
mod bar {
|
2016-08-16 12:36:48 +00:00
|
|
|
mod foo {}
|
2016-08-16 12:29:21 +00:00
|
|
|
}
|
2016-08-16 12:36:48 +00:00
|
|
|
mod foo {}
|
2016-08-16 12:29:21 +00:00
|
|
|
}
|
2017-02-08 13:58:07 +00:00
|
|
|
mod foo {
|
2016-08-16 12:36:48 +00:00
|
|
|
mod bar {}
|
2016-08-16 12:29:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-09 19:40:30 +00:00
|
|
|
// No warning. See <https://github.com/Manishearth/rust-clippy/issues/1220>.
|
|
|
|
mod bar {
|
|
|
|
#[allow(module_inception)]
|
2016-09-13 08:19:55 +00:00
|
|
|
mod bar {
|
2016-09-09 19:40:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-16 12:29:21 +00:00
|
|
|
fn main() {}
|