]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui-toml/toml_blacklist/conf_french_blacklisted_name.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui-toml / toml_blacklist / conf_french_blacklisted_name.stderr
1 error: use of a blacklisted/placeholder name `toto`
2 --> $DIR/conf_french_blacklisted_name.rs:6:9
3 |
4 LL | fn test(toto: ()) {}
5 | ^^^^
6 |
7 = note: `-D clippy::blacklisted-name` implied by `-D warnings`
8
9 error: use of a blacklisted/placeholder name `toto`
10 --> $DIR/conf_french_blacklisted_name.rs:9:9
11 |
12 LL | let toto = 42;
13 | ^^^^
14
15 error: use of a blacklisted/placeholder name `tata`
16 --> $DIR/conf_french_blacklisted_name.rs:10:9
17 |
18 LL | let tata = 42;
19 | ^^^^
20
21 error: use of a blacklisted/placeholder name `titi`
22 --> $DIR/conf_french_blacklisted_name.rs:11:9
23 |
24 LL | let titi = 42;
25 | ^^^^
26
27 error: use of a blacklisted/placeholder name `toto`
28 --> $DIR/conf_french_blacklisted_name.rs:17:10
29 |
30 LL | (toto, Some(tata), titi @ Some(_)) => (),
31 | ^^^^
32
33 error: use of a blacklisted/placeholder name `tata`
34 --> $DIR/conf_french_blacklisted_name.rs:17:21
35 |
36 LL | (toto, Some(tata), titi @ Some(_)) => (),
37 | ^^^^
38
39 error: use of a blacklisted/placeholder name `titi`
40 --> $DIR/conf_french_blacklisted_name.rs:17:28
41 |
42 LL | (toto, Some(tata), titi @ Some(_)) => (),
43 | ^^^^
44
45 error: aborting due to 7 previous errors
46