mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
88 lines
2.2 KiB
Text
88 lines
2.2 KiB
Text
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`
|
|
|
|
error: use of a disallowed/placeholder name `foo`
|
|
--> $DIR/disallowed_names.rs:15:9
|
|
|
|
|
LL | let foo = 42;
|
|
| ^^^
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
|
--> $DIR/disallowed_names.rs:16:9
|
|
|
|
|
LL | let baz = 42;
|
|
| ^^^
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
|
--> $DIR/disallowed_names.rs:17:9
|
|
|
|
|
LL | let quux = 42;
|
|
| ^^^^
|
|
|
|
error: use of a disallowed/placeholder name `foo`
|
|
--> $DIR/disallowed_names.rs:28:10
|
|
|
|
|
LL | (foo, Some(baz), quux @ Some(_)) => (),
|
|
| ^^^
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
|
--> $DIR/disallowed_names.rs:28:20
|
|
|
|
|
LL | (foo, Some(baz), quux @ Some(_)) => (),
|
|
| ^^^
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
|
--> $DIR/disallowed_names.rs:28:26
|
|
|
|
|
LL | (foo, Some(baz), quux @ Some(_)) => (),
|
|
| ^^^^
|
|
|
|
error: use of a disallowed/placeholder name `foo`
|
|
--> $DIR/disallowed_names.rs:33:19
|
|
|
|
|
LL | fn issue_1647(mut foo: u8) {
|
|
| ^^^
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
|
--> $DIR/disallowed_names.rs:34:13
|
|
|
|
|
LL | let mut baz = 0;
|
|
| ^^^
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
|
--> $DIR/disallowed_names.rs:35:21
|
|
|
|
|
LL | if let Some(mut quux) = Some(42) {}
|
|
| ^^^^
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
|
--> $DIR/disallowed_names.rs:39:13
|
|
|
|
|
LL | let ref baz = 0;
|
|
| ^^^
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
|
--> $DIR/disallowed_names.rs:40:21
|
|
|
|
|
LL | if let Some(ref quux) = Some(42) {}
|
|
| ^^^^
|
|
|
|
error: use of a disallowed/placeholder name `baz`
|
|
--> $DIR/disallowed_names.rs:44:17
|
|
|
|
|
LL | let ref mut baz = 0;
|
|
| ^^^
|
|
|
|
error: use of a disallowed/placeholder name `quux`
|
|
--> $DIR/disallowed_names.rs:45:25
|
|
|
|
|
LL | if let Some(ref mut quux) = Some(42) {}
|
|
| ^^^^
|
|
|
|
error: aborting due to 14 previous errors
|
|
|