summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/blacklisted_names_append/blacklisted_names.stderr
blob: 9169bb0e866ac2c47cb5698b1dc3ffe02908ab9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: use of a blacklisted/placeholder name `foo`
  --> $DIR/blacklisted_names.rs:5:9
   |
LL |     let foo = "bar";
   |         ^^^
   |
   = note: `-D clippy::blacklisted-name` implied by `-D warnings`

error: use of a blacklisted/placeholder name `ducks`
  --> $DIR/blacklisted_names.rs:7:9
   |
LL |     let ducks = ["quack", "quack"];
   |         ^^^^^

error: aborting due to 2 previous errors