2021-09-28 12:03:12 -05:00
|
|
|
error: use of a disallowed method `regex::Regex::new`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:35:14
|
2021-02-11 08:04:38 -06:00
|
|
|
|
|
|
|
|
LL | let re = Regex::new(r"ab.*c").unwrap();
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^^^^^^
|
2021-02-11 08:04:38 -06:00
|
|
|
|
|
2021-12-06 05:33:31 -06:00
|
|
|
= note: `-D clippy::disallowed-methods` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::disallowed_methods)]`
|
2021-02-11 08:04:38 -06:00
|
|
|
|
2021-09-28 12:03:12 -05:00
|
|
|
error: use of a disallowed method `regex::Regex::is_match`
|
2024-06-09 15:26:26 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:36:8
|
2020-10-09 05:45:29 -05:00
|
|
|
|
|
|
|
|
LL | re.is_match("abc");
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^^^^
|
2021-09-28 12:03:12 -05:00
|
|
|
|
|
2024-07-11 23:00:03 -05:00
|
|
|
= note: no matching allowed
|
2020-10-09 05:45:29 -05:00
|
|
|
|
2021-09-28 12:03:12 -05:00
|
|
|
error: use of a disallowed method `std::iter::Iterator::sum`
|
2024-06-09 15:26:26 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:39:14
|
2020-10-09 05:45:29 -05:00
|
|
|
|
|
|
|
|
LL | a.iter().sum::<i32>();
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^
|
2020-10-09 05:45:29 -05:00
|
|
|
|
2022-03-30 04:57:53 -05:00
|
|
|
error: use of a disallowed method `slice::sort_unstable`
|
2024-06-09 15:26:26 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:41:7
|
2022-03-30 04:57:53 -05:00
|
|
|
|
|
|
|
|
LL | a.sort_unstable();
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^^^^^^^^^
|
2022-03-30 04:57:53 -05:00
|
|
|
|
|
|
|
error: use of a disallowed method `f32::clamp`
|
2024-06-09 15:26:26 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:44:20
|
2022-03-30 04:57:53 -05:00
|
|
|
|
|
|
|
|
LL | let _ = 2.0f32.clamp(3.0f32, 4.0f32);
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^
|
2022-03-30 04:57:53 -05:00
|
|
|
|
2022-05-21 06:24:00 -05:00
|
|
|
error: use of a disallowed method `regex::Regex::new`
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:47:61
|
2022-05-21 06:24:00 -05:00
|
|
|
|
|
|
|
|
LL | let indirect: fn(&str) -> Result<Regex, regex::Error> = Regex::new;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed method `f32::clamp`
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:50:28
|
2022-05-21 06:24:00 -05:00
|
|
|
|
|
|
|
|
LL | let in_call = Box::new(f32::clamp);
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: use of a disallowed method `regex::Regex::new`
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:51:53
|
2022-05-21 06:24:00 -05:00
|
|
|
|
|
|
|
|
LL | let in_method_call = ["^", "$"].into_iter().map(Regex::new);
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2022-10-06 02:44:38 -05:00
|
|
|
error: use of a disallowed method `futures::stream::select_all`
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:54:31
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
|
LL | let same_name_as_module = select_all(vec![empty::<()>()]);
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^^^^^^
|
2022-10-06 02:44:38 -05:00
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
error: use of a disallowed method `conf_disallowed_methods::local_fn`
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:56:5
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
|
LL | local_fn();
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^^^^
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
error: use of a disallowed method `conf_disallowed_methods::local_mod::f`
|
2024-06-18 12:34:49 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:57:5
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
|
LL | local_mod::f();
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^^^^^^^^
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
error: use of a disallowed method `conf_disallowed_methods::Struct::method`
|
2024-06-09 15:26:26 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:59:7
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
|
LL | s.method();
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^^
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
error: use of a disallowed method `conf_disallowed_methods::Trait::provided_method`
|
2024-06-09 15:26:26 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:60:7
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
|
LL | s.provided_method();
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
error: use of a disallowed method `conf_disallowed_methods::Trait::implemented_method`
|
2024-06-09 15:26:26 -05:00
|
|
|
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:61:7
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
|
LL | s.implemented_method();
|
2024-06-09 15:26:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2022-11-21 13:34:47 -06:00
|
|
|
|
|
|
|
error: aborting due to 14 previous errors
|
2020-10-09 05:45:29 -05:00
|
|
|
|