]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/non_expressive_names.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / non_expressive_names.stderr
1 error: binding's name is too similar to existing binding
2   --> non_expressive_names.rs:18:9
3    |
4 18 |     let bpple: i32;
5    |         ^^^^^
6    |
7    = note: `-D similar-names` implied by `-D warnings`
8 note: existing binding defined here
9   --> non_expressive_names.rs:16:9
10    |
11 16 |     let apple: i32;
12    |         ^^^^^
13 help: separate the discriminating character by an underscore like: `b_pple`
14   --> non_expressive_names.rs:18:9
15    |
16 18 |     let bpple: i32;
17    |         ^^^^^
18
19 error: binding's name is too similar to existing binding
20   --> non_expressive_names.rs:20:9
21    |
22 20 |     let cpple: i32;
23    |         ^^^^^
24    |
25    = note: `-D similar-names` implied by `-D warnings`
26 note: existing binding defined here
27   --> non_expressive_names.rs:16:9
28    |
29 16 |     let apple: i32;
30    |         ^^^^^
31 help: separate the discriminating character by an underscore like: `c_pple`
32   --> non_expressive_names.rs:20:9
33    |
34 20 |     let cpple: i32;
35    |         ^^^^^
36
37 error: binding's name is too similar to existing binding
38   --> non_expressive_names.rs:45:9
39    |
40 45 |     let bluby: i32;
41    |         ^^^^^
42    |
43    = note: `-D similar-names` implied by `-D warnings`
44 note: existing binding defined here
45   --> non_expressive_names.rs:44:9
46    |
47 44 |     let blubx: i32;
48    |         ^^^^^
49 help: separate the discriminating character by an underscore like: `blub_y`
50   --> non_expressive_names.rs:45:9
51    |
52 45 |     let bluby: i32;
53    |         ^^^^^
54
55 error: binding's name is too similar to existing binding
56   --> non_expressive_names.rs:50:9
57    |
58 50 |     let coke: i32;
59    |         ^^^^
60    |
61    = note: `-D similar-names` implied by `-D warnings`
62 note: existing binding defined here
63   --> non_expressive_names.rs:48:9
64    |
65 48 |     let cake: i32;
66    |         ^^^^
67
68 error: binding's name is too similar to existing binding
69   --> non_expressive_names.rs:68:9
70    |
71 68 |     let xyzeabc: i32;
72    |         ^^^^^^^
73    |
74    = note: `-D similar-names` implied by `-D warnings`
75 note: existing binding defined here
76   --> non_expressive_names.rs:66:9
77    |
78 66 |     let xyz1abc: i32;
79    |         ^^^^^^^
80
81 error: binding's name is too similar to existing binding
82   --> non_expressive_names.rs:72:9
83    |
84 72 |     let parsee: i32;
85    |         ^^^^^^
86    |
87    = note: `-D similar-names` implied by `-D warnings`
88 note: existing binding defined here
89   --> non_expressive_names.rs:70:9
90    |
91 70 |     let parser: i32;
92    |         ^^^^^^
93 help: separate the discriminating character by an underscore like: `parse_e`
94   --> non_expressive_names.rs:72:9
95    |
96 72 |     let parsee: i32;
97    |         ^^^^^^
98
99 error: binding's name is too similar to existing binding
100   --> non_expressive_names.rs:86:16
101    |
102 86 |         bpple: sprang } = unimplemented!();
103    |                ^^^^^^
104    |
105    = note: `-D similar-names` implied by `-D warnings`
106 note: existing binding defined here
107   --> non_expressive_names.rs:85:22
108    |
109 85 |     let Foo { apple: spring,
110    |                      ^^^^^^
111
112 error: 5th binding whose name is just one char
113    --> non_expressive_names.rs:120:17
114     |
115 120 |             let e: i32;
116     |                 ^
117     |
118     = note: `-D many-single-char-names` implied by `-D warnings`
119
120 error: 5th binding whose name is just one char
121    --> non_expressive_names.rs:123:17
122     |
123 123 |             let e: i32;
124     |                 ^
125     |
126     = note: `-D many-single-char-names` implied by `-D warnings`
127
128 error: 6th binding whose name is just one char
129    --> non_expressive_names.rs:124:17
130     |
131 124 |             let f: i32;
132     |                 ^
133     |
134     = note: `-D many-single-char-names` implied by `-D warnings`
135
136 error: 5th binding whose name is just one char
137    --> non_expressive_names.rs:129:13
138     |
139 129 |             e => panic!(),
140     |             ^
141     |
142     = note: `-D many-single-char-names` implied by `-D warnings`
143
144 error: aborting due to previous error(s)
145
146
147 To learn more, run the command again with --verbose.