about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui-toml/disallowed_names_replace/disallowed_names.stderr
blob: 68cc9968902e38278b0c4f105102fca20503a68a (plain)
1
2
3
4
5
6
7
8
9
10
11
error: use of a disallowed/placeholder name `ducks`
  --> tests/ui-toml/disallowed_names_replace/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