2022-08-11 12:42:16 -05:00
|
|
|
error: use of a disallowed/placeholder name `foo`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui-toml/disallowed_names_append/disallowed_names.rs:5:9
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
|
LL | let foo = "bar";
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::disallowed-names` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::disallowed_names)]`
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `ducks`
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui-toml/disallowed_names_append/disallowed_names.rs:7:9
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
|
LL | let ducks = ["quack", "quack"];
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|