about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/many_single_char_names.stderr
blob: 131836ef7c882b02bd90ad53a40ff9e3eff6bc3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
error: 5 bindings with single-character names in scope
  --> tests/ui/many_single_char_names.rs:5:9
   |
LL |     let a: i32;
   |         ^
...
LL |     let (b, c, d): (i32, i64, i16);
   |          ^  ^  ^
...
LL |             let e: i32;
   |                 ^
   |
   = note: `-D clippy::many-single-char-names` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::many_single_char_names)]`

error: 6 bindings with single-character names in scope
  --> tests/ui/many_single_char_names.rs:5:9
   |
LL |     let a: i32;
   |         ^
...
LL |     let (b, c, d): (i32, i64, i16);
   |          ^  ^  ^
...
LL |             let e: i32;
   |                 ^
LL |             let f: i32;
   |                 ^

error: 5 bindings with single-character names in scope
  --> tests/ui/many_single_char_names.rs:5:9
   |
LL |     let a: i32;
   |         ^
...
LL |     let (b, c, d): (i32, i64, i16);
   |          ^  ^  ^
...
LL |             e => panic!(),
   |             ^

error: 8 bindings with single-character names in scope
  --> tests/ui/many_single_char_names.rs:34:13
   |
LL | fn bindings(a: i32, b: i32, c: i32, d: i32, e: i32, f: i32, g: i32, h: i32) {}
   |             ^       ^       ^       ^       ^       ^       ^       ^

error: 8 bindings with single-character names in scope
  --> tests/ui/many_single_char_names.rs:38:10
   |
LL |     let (a, b, c, d, e, f, g, h): (bool, bool, bool, bool, bool, bool, bool, bool) = unimplemented!();
   |          ^  ^  ^  ^  ^  ^  ^  ^

error: aborting due to 5 previous errors