2022-04-07 12:39:59 -05:00
|
|
|
error: `mod.rs` files are required, found `bad/inner.rs`
|
2021-09-08 09:31:47 -05:00
|
|
|
--> $DIR/bad/inner.rs:1:1
|
|
|
|
|
|
|
|
|
LL | pub mod stuff;
|
|
|
|
| ^
|
|
|
|
|
|
2022-04-07 12:39:59 -05:00
|
|
|
= help: move `bad/inner.rs` to `bad/inner/mod.rs`
|
2022-10-06 02:19:29 -05:00
|
|
|
= note: `-D clippy::self-named-module-files` implied by `-D warnings`
|
2021-09-08 09:31:47 -05:00
|
|
|
|
2022-04-07 12:39:59 -05:00
|
|
|
error: `mod.rs` files are required, found `bad/inner/stuff.rs`
|
2021-09-08 09:31:47 -05:00
|
|
|
--> $DIR/bad/inner/stuff.rs:1:1
|
|
|
|
|
|
|
|
|
LL | pub mod most;
|
|
|
|
| ^
|
|
|
|
|
|
2022-04-07 12:39:59 -05:00
|
|
|
= help: move `bad/inner/stuff.rs` to `bad/inner/stuff/mod.rs`
|
2021-09-08 09:31:47 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|