mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
850c24edd3
This lint was triggering on modules inside expanded attrs, like for example `#[cfg(test)]` and possibly more.
34 lines
943 B
Text
34 lines
943 B
Text
error: item name starts with its containing module's name
|
|
--> $DIR/module_name_repetitions.rs:8:5
|
|
|
|
|
LL | pub fn foo_bar() {}
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::module-name-repetitions` implied by `-D warnings`
|
|
|
|
error: item name ends with its containing module's name
|
|
--> $DIR/module_name_repetitions.rs:9:5
|
|
|
|
|
LL | pub fn bar_foo() {}
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: item name starts with its containing module's name
|
|
--> $DIR/module_name_repetitions.rs:10:5
|
|
|
|
|
LL | pub struct FooCake {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: item name ends with its containing module's name
|
|
--> $DIR/module_name_repetitions.rs:11:5
|
|
|
|
|
LL | pub enum CakeFoo {}
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: item name starts with its containing module's name
|
|
--> $DIR/module_name_repetitions.rs:12:5
|
|
|
|
|
LL | pub struct Foo7Bar;
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|