summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/disallowed_names.stderr
blob: 3387906a0e5c2428b286741cfdf1c191c1a4a284 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
error: use of a disallowed/placeholder name `foo`
  --> $DIR/disallowed_names.rs:12:9
   |
LL | fn test(foo: ()) {}
   |         ^^^
   |
   = note: `-D clippy::disallowed-names` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::disallowed_names)]`

error: use of a disallowed/placeholder name `foo`
  --> $DIR/disallowed_names.rs:17:9
   |
LL |     let foo = 42;
   |         ^^^

error: use of a disallowed/placeholder name `baz`
  --> $DIR/disallowed_names.rs:19:9
   |
LL |     let baz = 42;
   |         ^^^

error: use of a disallowed/placeholder name `quux`
  --> $DIR/disallowed_names.rs:21:9
   |
LL |     let quux = 42;
   |         ^^^^

error: use of a disallowed/placeholder name `foo`
  --> $DIR/disallowed_names.rs:33:10
   |
LL |         (foo, Some(baz), quux @ Some(_)) => (),
   |          ^^^

error: use of a disallowed/placeholder name `baz`
  --> $DIR/disallowed_names.rs:33:20
   |
LL |         (foo, Some(baz), quux @ Some(_)) => (),
   |                    ^^^

error: use of a disallowed/placeholder name `quux`
  --> $DIR/disallowed_names.rs:33:26
   |
LL |         (foo, Some(baz), quux @ Some(_)) => (),
   |                          ^^^^

error: use of a disallowed/placeholder name `foo`
  --> $DIR/disallowed_names.rs:41:19
   |
LL | fn issue_1647(mut foo: u8) {
   |                   ^^^

error: use of a disallowed/placeholder name `baz`
  --> $DIR/disallowed_names.rs:43:13
   |
LL |     let mut baz = 0;
   |             ^^^

error: use of a disallowed/placeholder name `quux`
  --> $DIR/disallowed_names.rs:45:21
   |
LL |     if let Some(mut quux) = Some(42) {}
   |                     ^^^^

error: use of a disallowed/placeholder name `baz`
  --> $DIR/disallowed_names.rs:50:13
   |
LL |     let ref baz = 0;
   |             ^^^

error: use of a disallowed/placeholder name `quux`
  --> $DIR/disallowed_names.rs:52:21
   |
LL |     if let Some(ref quux) = Some(42) {}
   |                     ^^^^

error: use of a disallowed/placeholder name `baz`
  --> $DIR/disallowed_names.rs:57:17
   |
LL |     let ref mut baz = 0;
   |                 ^^^

error: use of a disallowed/placeholder name `quux`
  --> $DIR/disallowed_names.rs:59:25
   |
LL |     if let Some(ref mut quux) = Some(42) {}
   |                         ^^^^

error: aborting due to 14 previous errors