]> git.lizzy.rs Git - rust.git/blob - tests/ui-toml/blacklisted_names_append/blacklisted_names.stderr
Auto merge of #9252 - Metaswitch:use-deprecated-config, r=Jarcho
[rust.git] / tests / ui-toml / blacklisted_names_append / blacklisted_names.stderr
1 error: use of a blacklisted/placeholder name `foo`
2   --> $DIR/blacklisted_names.rs:5:9
3    |
4 LL |     let foo = "bar";
5    |         ^^^
6    |
7    = note: `-D clippy::blacklisted-name` implied by `-D warnings`
8
9 error: use of a blacklisted/placeholder name `ducks`
10   --> $DIR/blacklisted_names.rs:7:9
11    |
12 LL |     let ducks = ["quack", "quack"];
13    |         ^^^^^
14
15 error: aborting due to 2 previous errors
16