rust/tests/ui/stutter.stderr

35 lines
849 B
Plaintext
Raw Normal View History

error: item name starts with its containing module's name
2018-10-06 11:18:06 -05:00
--> $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
2018-10-06 11:18:06 -05:00
--> $DIR/stutter.rs:19:5
|
19 | pub fn bar_foo() {}
| ^^^^^^^^^^^^^^^^^^^
error: item name starts with its containing module's name
2018-10-06 11:18:06 -05:00
--> $DIR/stutter.rs:20:5
|
2018-10-06 11:18:06 -05:00
20 | pub struct FooCake {}
| ^^^^^^^^^^^^^^^^^^^^^
error: item name ends with its containing module's name
2018-10-06 11:18:06 -05:00
--> $DIR/stutter.rs:21:5
|
2018-10-06 11:18:06 -05:00
21 | pub enum CakeFoo {}
| ^^^^^^^^^^^^^^^^^^^
2017-11-26 11:57:34 -06:00
error: item name starts with its containing module's name
2018-10-06 11:18:06 -05:00
--> $DIR/stutter.rs:22:5
2017-11-26 11:57:34 -06:00
|
2018-10-06 11:18:06 -05:00
22 | pub struct Foo7Bar;
2017-11-26 11:57:34 -06:00
| ^^^^^^^^^^^^^^^^^^^
2018-01-16 10:06:27 -06:00
error: aborting due to 5 previous errors