rust-clippy/tests/ui/stutter.stderr
2018-10-06 09:43:08 -07:00

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