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