2022-08-11 12:42:16 -05:00
|
|
|
error: use of a disallowed/placeholder name `toto`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/toml_disallow/conf_french_disallowed_name.rs:6:9
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
|
LL | fn test(toto: ()) {}
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::disallowed-names` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::disallowed_names)]`
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `toto`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/toml_disallow/conf_french_disallowed_name.rs:9:9
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
|
LL | let toto = 42;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `tata`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/toml_disallow/conf_french_disallowed_name.rs:10:9
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
|
LL | let tata = 42;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `titi`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/toml_disallow/conf_french_disallowed_name.rs:11:9
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
|
LL | let titi = 42;
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `toto`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/toml_disallow/conf_french_disallowed_name.rs:17:10
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
|
LL | (toto, Some(tata), titi @ Some(_)) => (),
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `tata`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/toml_disallow/conf_french_disallowed_name.rs:17:21
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
|
LL | (toto, Some(tata), titi @ Some(_)) => (),
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed/placeholder name `titi`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/toml_disallow/conf_french_disallowed_name.rs:17:28
|
2022-08-11 12:42:16 -05:00
|
|
|
|
|
|
|
|
LL | (toto, Some(tata), titi @ Some(_)) => (),
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|