mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-19 01:24:05 +00:00
c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
11 lines
343 B
Text
11 lines
343 B
Text
error: use of a disallowed/placeholder name `ducks`
|
|
--> $DIR/disallowed_names.rs:7:9
|
|
|
|
|
LL | let ducks = ["quack", "quack"];
|
|
| ^^^^^
|
|
|
|
|
= note: `-D clippy::disallowed-names` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::disallowed_names)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|