rust-clippy/tests/ui/stutter.stderr

33 lines
787 B
Text
Raw Normal View History

error: item name starts with its containing module's name
2017-08-01 15:54:21 +00:00
--> $DIR/stutter.rs:8:5
|
2017-02-08 13:58:07 +00:00
8 | pub fn foo_bar() {}
| ^^^^^^^^^^^^^^^^^^^
|
= note: `-D stutter` implied by `-D warnings`
error: item name ends with its containing module's name
2017-08-01 15:54:21 +00:00
--> $DIR/stutter.rs:9:5
|
2017-02-08 13:58:07 +00:00
9 | pub fn bar_foo() {}
| ^^^^^^^^^^^^^^^^^^^
error: item name starts with its containing module's name
2017-08-01 15:54:21 +00:00
--> $DIR/stutter.rs:10:5
|
2017-02-08 13:58:07 +00:00
10 | pub struct FooCake {}
| ^^^^^^^^^^^^^^^^^^^^^
error: item name ends with its containing module's name
2017-08-01 15:54:21 +00:00
--> $DIR/stutter.rs:11:5
|
2017-02-08 13:58:07 +00:00
11 | pub enum CakeFoo {}
| ^^^^^^^^^^^^^^^^^^^
2017-11-26 17:57:34 +00:00
error: item name starts with its containing module's name
--> $DIR/stutter.rs:12:5
|
12 | pub struct Foo7Bar;
| ^^^^^^^^^^^^^^^^^^^