2022-06-08 16:20:30 +01:00
|
|
|
error: use of a disallowed/placeholder name `foo`
|
|
|
|
--> $DIR/disallowed_names.rs:5:9
|
|
|
|
|
|
|
|
|
LL | let foo = "bar";
|
|
|
|
| ^^^
|
|
|
|
|
|
2022-06-08 20:08:37 +01:00
|
|
|
= note: `-D clippy::disallowed-names` implied by `-D warnings`
|
2022-06-08 16:20:30 +01:00
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `ducks`
|
|
|
|
--> $DIR/disallowed_names.rs:7:9
|
|
|
|
|
|
|
|
|
LL | let ducks = ["quack", "quack"];
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|