rust-clippy/clippy_tests/examples/stutter.stderr

31 lines
714 B
Text
Raw Normal View History

error: item name starts with its containing module's name
--> 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
--> 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
--> 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
--> stutter.rs:11:5
|
2017-02-08 13:58:07 +00:00
11 | pub enum CakeFoo {}
| ^^^^^^^^^^^^^^^^^^^
2017-07-03 04:37:30 +00:00
error: aborting due to 4 previous errors
To learn more, run the command again with --verbose.