]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/many_single_char_names.stderr
Rollup merge of #99474 - aDotInTheVoid:rustdoc-json-noinline-test-cleanup, r=CraftSpider
[rust.git] / src / tools / clippy / tests / ui / many_single_char_names.stderr
1 error: 5 bindings with single-character names in scope
2   --> $DIR/many_single_char_names.rs:5:9
3    |
4 LL |     let a: i32;
5    |         ^
6 LL |     let (b, c, d): (i32, i64, i16);
7    |          ^  ^  ^
8 ...
9 LL |             let e: i32;
10    |                 ^
11    |
12    = note: `-D clippy::many-single-char-names` implied by `-D warnings`
13
14 error: 6 bindings with single-character names in scope
15   --> $DIR/many_single_char_names.rs:5:9
16    |
17 LL |     let a: i32;
18    |         ^
19 LL |     let (b, c, d): (i32, i64, i16);
20    |          ^  ^  ^
21 ...
22 LL |             let e: i32;
23    |                 ^
24 LL |             let f: i32;
25    |                 ^
26
27 error: 5 bindings with single-character names in scope
28   --> $DIR/many_single_char_names.rs:5:9
29    |
30 LL |     let a: i32;
31    |         ^
32 LL |     let (b, c, d): (i32, i64, i16);
33    |          ^  ^  ^
34 ...
35 LL |             e => panic!(),
36    |             ^
37
38 error: 8 bindings with single-character names in scope
39   --> $DIR/many_single_char_names.rs:30:13
40    |
41 LL | fn bindings(a: i32, b: i32, c: i32, d: i32, e: i32, f: i32, g: i32, h: i32) {}
42    |             ^       ^       ^       ^       ^       ^       ^       ^
43
44 error: 8 bindings with single-character names in scope
45   --> $DIR/many_single_char_names.rs:33:10
46    |
47 LL |     let (a, b, c, d, e, f, g, h): (bool, bool, bool, bool, bool, bool, bool, bool) = unimplemented!();
48    |          ^  ^  ^  ^  ^  ^  ^  ^
49
50 error: aborting due to 5 previous errors
51