]> git.lizzy.rs Git - rust.git/blob - tests/ui/stutter.stderr
Merge branch 'master' into rustfmt_tests
[rust.git] / tests / ui / stutter.stderr
1 error: item name starts with its containing module's name
2   --> $DIR/stutter.rs:15:5
3    |
4 15 |     pub fn foo_bar() {}
5    |     ^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::stutter` implied by `-D warnings`
8
9 error: item name ends with its containing module's name
10   --> $DIR/stutter.rs:16:5
11    |
12 16 |     pub fn bar_foo() {}
13    |     ^^^^^^^^^^^^^^^^^^^
14
15 error: item name starts with its containing module's name
16   --> $DIR/stutter.rs:17:5
17    |
18 17 |     pub struct FooCake {}
19    |     ^^^^^^^^^^^^^^^^^^^^^
20
21 error: item name ends with its containing module's name
22   --> $DIR/stutter.rs:18:5
23    |
24 18 |     pub enum CakeFoo {}
25    |     ^^^^^^^^^^^^^^^^^^^
26
27 error: item name starts with its containing module's name
28   --> $DIR/stutter.rs:19:5
29    |
30 19 |     pub struct Foo7Bar;
31    |     ^^^^^^^^^^^^^^^^^^^
32
33 error: aborting due to 5 previous errors
34