2022-08-11 17:42:16 +00:00
|
|
|
error: use of a disallowed/placeholder name `foo`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:12:9
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | fn test(foo: ()) {}
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::disallowed-names` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::disallowed_names)]`
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `foo`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:17:9
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | let foo = 42;
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:19:9
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | let baz = 42;
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:21:9
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | let quux = 42;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `foo`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:33:10
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | (foo, Some(baz), quux @ Some(_)) => (),
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:33:20
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | (foo, Some(baz), quux @ Some(_)) => (),
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:33:26
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | (foo, Some(baz), quux @ Some(_)) => (),
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `foo`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:41:19
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | fn issue_1647(mut foo: u8) {
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:43:13
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | let mut baz = 0;
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:45:21
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | if let Some(mut quux) = Some(42) {}
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:50:13
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | let ref baz = 0;
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:52:21
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | if let Some(ref quux) = Some(42) {}
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:57:17
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | let ref mut baz = 0;
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/disallowed_names.rs:59:25
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
|
LL | if let Some(ref mut quux) = Some(42) {}
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: aborting due to 14 previous errors
|
|
|
|
|