2017-02-07 20:05:30 +00:00
|
|
|
error: item name starts with its containing module's name
|
2019-04-19 10:53:03 +00:00
|
|
|
--> $DIR/module_name_repetitions.rs:8:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | pub fn foo_bar() {}
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-12-17 13:29:19 +00:00
|
|
|
= note: `-D clippy::module-name-repetitions` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: item name ends with its containing module's name
|
2019-04-19 10:53:03 +00:00
|
|
|
--> $DIR/module_name_repetitions.rs:9:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | pub fn bar_foo() {}
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: item name starts with its containing module's name
|
2019-04-19 10:53:03 +00:00
|
|
|
--> $DIR/module_name_repetitions.rs:10:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
LL | pub struct FooCake;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: item name ends with its containing module's name
|
2019-04-19 10:53:03 +00:00
|
|
|
--> $DIR/module_name_repetitions.rs:11:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | pub enum CakeFoo {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2017-11-26 17:57:34 +00:00
|
|
|
error: item name starts with its containing module's name
|
2019-04-19 10:53:03 +00:00
|
|
|
--> $DIR/module_name_repetitions.rs:12:5
|
2017-11-26 17:57:34 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | pub struct Foo7Bar;
|
2017-11-26 17:57:34 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|