2022-06-08 10:20:30 -05:00
|
|
|
error: use of a disallowed/placeholder name `foo`
|
|
|
|
--> $DIR/disallowed_names.rs:5:9
|
|
|
|
|
|
|
|
|
LL | let foo = "bar";
|
|
|
|
| ^^^
|
|
|
|
|
|
2022-06-08 14:08:37 -05:00
|
|
|
= note: `-D clippy::disallowed-names` implied by `-D warnings`
|
2022-06-08 10:20:30 -05: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
|
|
|
|
|