]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/stutter.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / stutter.stderr
1 error: item name starts with its containing module's name
2  --> stutter.rs:8:5
3   |
4 8 |     pub fn foo_bar() {}
5   |     ^^^^^^^^^^^^^^^^^^^
6   |
7   = note: `-D stutter` implied by `-D warnings`
8
9 error: item name ends with its containing module's name
10  --> stutter.rs:9:5
11   |
12 9 |     pub fn bar_foo() {}
13   |     ^^^^^^^^^^^^^^^^^^^
14   |
15   = note: `-D stutter` implied by `-D warnings`
16
17 error: item name starts with its containing module's name
18   --> stutter.rs:10:5
19    |
20 10 |     pub struct FooCake {}
21    |     ^^^^^^^^^^^^^^^^^^^^^
22    |
23    = note: `-D stutter` implied by `-D warnings`
24
25 error: item name ends with its containing module's name
26   --> stutter.rs:11:5
27    |
28 11 |     pub enum CakeFoo {}
29    |     ^^^^^^^^^^^^^^^^^^^
30    |
31    = note: `-D stutter` implied by `-D warnings`
32
33 error: aborting due to previous error(s)
34
35
36 To learn more, run the command again with --verbose.