summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/toml_disallow/conf_french_disallowed_name.stderr
blob: 9082c1c54c36b9dc87e6d1e3a612961ff595b532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
error: use of a disallowed/placeholder name `toto`
  --> $DIR/conf_french_disallowed_name.rs:6:9
   |
LL | fn test(toto: ()) {}
   |         ^^^^
   |
   = note: `-D clippy::disallowed-names` implied by `-D warnings`

error: use of a disallowed/placeholder name `toto`
  --> $DIR/conf_french_disallowed_name.rs:9:9
   |
LL |     let toto = 42;
   |         ^^^^

error: use of a disallowed/placeholder name `tata`
  --> $DIR/conf_french_disallowed_name.rs:10:9
   |
LL |     let tata = 42;
   |         ^^^^

error: use of a disallowed/placeholder name `titi`
  --> $DIR/conf_french_disallowed_name.rs:11:9
   |
LL |     let titi = 42;
   |         ^^^^

error: use of a disallowed/placeholder name `toto`
  --> $DIR/conf_french_disallowed_name.rs:17:10
   |
LL |         (toto, Some(tata), titi @ Some(_)) => (),
   |          ^^^^

error: use of a disallowed/placeholder name `tata`
  --> $DIR/conf_french_disallowed_name.rs:17:21
   |
LL |         (toto, Some(tata), titi @ Some(_)) => (),
   |                     ^^^^

error: use of a disallowed/placeholder name `titi`
  --> $DIR/conf_french_disallowed_name.rs:17:28
   |
LL |         (toto, Some(tata), titi @ Some(_)) => (),
   |                            ^^^^

error: aborting due to 7 previous errors