11error: use of a disallowed/placeholder name `foo`
2- --> tests/ui/disallowed_names.rs:12 :9
2+ --> tests/ui/disallowed_names.rs:16 :9
33 |
44LL | fn test(foo: ()) {}
55 | ^^^
@@ -8,79 +8,79 @@ LL | fn test(foo: ()) {}
88 = help: to override `-D warnings` add `#[allow(clippy::disallowed_names)]`
99
1010error: use of a disallowed/placeholder name `foo`
11- --> tests/ui/disallowed_names.rs:16 :9
11+ --> tests/ui/disallowed_names.rs:20 :9
1212 |
1313LL | let foo = 42;
1414 | ^^^
1515
1616error: use of a disallowed/placeholder name `baz`
17- --> tests/ui/disallowed_names.rs:19 :9
17+ --> tests/ui/disallowed_names.rs:23 :9
1818 |
1919LL | let baz = 42;
2020 | ^^^
2121
2222error: use of a disallowed/placeholder name `quux`
23- --> tests/ui/disallowed_names.rs:22 :9
23+ --> tests/ui/disallowed_names.rs:26 :9
2424 |
2525LL | let quux = 42;
2626 | ^^^^
2727
2828error: use of a disallowed/placeholder name `foo`
29- --> tests/ui/disallowed_names.rs:35 :10
29+ --> tests/ui/disallowed_names.rs:39 :10
3030 |
3131LL | (foo, Some(baz), quux @ Some(_)) => (),
3232 | ^^^
3333
3434error: use of a disallowed/placeholder name `baz`
35- --> tests/ui/disallowed_names.rs:35 :20
35+ --> tests/ui/disallowed_names.rs:39 :20
3636 |
3737LL | (foo, Some(baz), quux @ Some(_)) => (),
3838 | ^^^
3939
4040error: use of a disallowed/placeholder name `quux`
41- --> tests/ui/disallowed_names.rs:35 :26
41+ --> tests/ui/disallowed_names.rs:39 :26
4242 |
4343LL | (foo, Some(baz), quux @ Some(_)) => (),
4444 | ^^^^
4545
4646error: use of a disallowed/placeholder name `foo`
47- --> tests/ui/disallowed_names.rs:43 :19
47+ --> tests/ui/disallowed_names.rs:47 :19
4848 |
4949LL | fn issue_1647(mut foo: u8) {
5050 | ^^^
5151
5252error: use of a disallowed/placeholder name `baz`
53- --> tests/ui/disallowed_names.rs:46 :13
53+ --> tests/ui/disallowed_names.rs:50 :13
5454 |
5555LL | let mut baz = 0;
5656 | ^^^
5757
5858error: use of a disallowed/placeholder name `quux`
59- --> tests/ui/disallowed_names.rs:49 :21
59+ --> tests/ui/disallowed_names.rs:53 :21
6060 |
6161LL | if let Some(mut quux) = Some(42) {}
6262 | ^^^^
6363
6464error: use of a disallowed/placeholder name `baz`
65- --> tests/ui/disallowed_names.rs:54 :13
65+ --> tests/ui/disallowed_names.rs:58 :13
6666 |
6767LL | let ref baz = 0;
6868 | ^^^
6969
7070error: use of a disallowed/placeholder name `quux`
71- --> tests/ui/disallowed_names.rs:57 :21
71+ --> tests/ui/disallowed_names.rs:61 :21
7272 |
7373LL | if let Some(ref quux) = Some(42) {}
7474 | ^^^^
7575
7676error: use of a disallowed/placeholder name `baz`
77- --> tests/ui/disallowed_names.rs:62 :17
77+ --> tests/ui/disallowed_names.rs:66 :17
7878 |
7979LL | let ref mut baz = 0;
8080 | ^^^
8181
8282error: use of a disallowed/placeholder name `quux`
83- --> tests/ui/disallowed_names.rs:65 :25
83+ --> tests/ui/disallowed_names.rs:69 :25
8484 |
8585LL | if let Some(ref mut quux) = Some(42) {}
8686 | ^^^^
0 commit comments