2018-07-28 15:34:52 +00:00
|
|
|
#![feature(tool_lints)]
|
2017-09-18 10:47:33 +00:00
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::module_inception)]
|
2016-08-16 12:29:21 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-06 11:10:21 +00:00
|
|
|
// No warning. See <https://github.com/rust-lang-nursery/rust-clippy/issues/1220>.
|
2016-09-09 19:40:30 +00:00
|
|
|
mod bar {
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::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() {}
|