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