mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
34 lines
849 B
Text
34 lines
849 B
Text
error: item name starts with its containing module's name
|
|
--> $DIR/stutter.rs:18:5
|
|
|
|
|
18 | pub fn foo_bar() {}
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::stutter` implied by `-D warnings`
|
|
|
|
error: item name ends with its containing module's name
|
|
--> $DIR/stutter.rs:19:5
|
|
|
|
|
19 | pub fn bar_foo() {}
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: item name starts with its containing module's name
|
|
--> $DIR/stutter.rs:20:5
|
|
|
|
|
20 | pub struct FooCake {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: item name ends with its containing module's name
|
|
--> $DIR/stutter.rs:21:5
|
|
|
|
|
21 | pub enum CakeFoo {}
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: item name starts with its containing module's name
|
|
--> $DIR/stutter.rs:22:5
|
|
|
|
|
22 | pub struct Foo7Bar;
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|