]> git.lizzy.rs Git - rust.git/blob - tests/ui-toml/toml_disallow/conf_french_disallowed_name.stderr
Merge commit '2b2190cb5667cdd276a24ef8b9f3692209c54a89' into clippyup
[rust.git] / tests / ui-toml / toml_disallow / conf_french_disallowed_name.stderr
1 error: use of a disallowed/placeholder name `toto`
2   --> $DIR/conf_french_disallowed_name.rs:6:9
3    |
4 LL | fn test(toto: ()) {}
5    |         ^^^^
6    |
7    = note: `-D clippy::disallowed-names` implied by `-D warnings`
8
9 error: use of a disallowed/placeholder name `toto`
10   --> $DIR/conf_french_disallowed_name.rs:9:9
11    |
12 LL |     let toto = 42;
13    |         ^^^^
14
15 error: use of a disallowed/placeholder name `tata`
16   --> $DIR/conf_french_disallowed_name.rs:10:9
17    |
18 LL |     let tata = 42;
19    |         ^^^^
20
21 error: use of a disallowed/placeholder name `titi`
22   --> $DIR/conf_french_disallowed_name.rs:11:9
23    |
24 LL |     let titi = 42;
25    |         ^^^^
26
27 error: use of a disallowed/placeholder name `toto`
28   --> $DIR/conf_french_disallowed_name.rs:17:10
29    |
30 LL |         (toto, Some(tata), titi @ Some(_)) => (),
31    |          ^^^^
32
33 error: use of a disallowed/placeholder name `tata`
34   --> $DIR/conf_french_disallowed_name.rs:17:21
35    |
36 LL |         (toto, Some(tata), titi @ Some(_)) => (),
37    |                     ^^^^
38
39 error: use of a disallowed/placeholder name `titi`
40   --> $DIR/conf_french_disallowed_name.rs:17:28
41    |
42 LL |         (toto, Some(tata), titi @ Some(_)) => (),
43    |                            ^^^^
44
45 error: aborting due to 7 previous errors
46