]> git.lizzy.rs Git - rust.git/blob - tests/ui/stutter.stderr
Merge pull request #2984 from flip1995/single_char_pattern
[rust.git] / tests / ui / stutter.stderr
1 error: item name starts with its containing module's name
2  --> $DIR/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  --> $DIR/stutter.rs:9:5
11   |
12 9 |     pub fn bar_foo() {}
13   |     ^^^^^^^^^^^^^^^^^^^
14
15 error: item name starts with its containing module's name
16   --> $DIR/stutter.rs:10:5
17    |
18 10 |     pub struct FooCake {}
19    |     ^^^^^^^^^^^^^^^^^^^^^
20
21 error: item name ends with its containing module's name
22   --> $DIR/stutter.rs:11:5
23    |
24 11 |     pub enum CakeFoo {}
25    |     ^^^^^^^^^^^^^^^^^^^
26
27 error: item name starts with its containing module's name
28   --> $DIR/stutter.rs:12:5
29    |
30 12 |     pub struct Foo7Bar;
31    |     ^^^^^^^^^^^^^^^^^^^
32
33 error: aborting due to 5 previous errors
34