2021-09-08 20:12:02 -05:00
|
|
|
error: use of a disallowed method `regex::Regex::new`
|
2021-11-18 07:08:48 -06:00
|
|
|
--> $DIR/conf_disallowed_methods.rs:7:14
|
2021-01-30 00:18:56 -06:00
|
|
|
|
|
|
|
|
LL | let re = Regex::new(r"ab.*c").unwrap();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-11-18 07:08:48 -06:00
|
|
|
= note: `-D clippy::disallowed-methods` implied by `-D warnings`
|
2021-01-30 00:18:56 -06:00
|
|
|
|
2021-09-08 20:12:02 -05:00
|
|
|
error: use of a disallowed method `regex::Regex::is_match`
|
2021-11-18 07:08:48 -06:00
|
|
|
--> $DIR/conf_disallowed_methods.rs:8:5
|
2020-09-24 15:32:03 -05:00
|
|
|
|
|
|
|
|
LL | re.is_match("abc");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2021-09-08 20:12:02 -05:00
|
|
|
|
|
|
|
|
= note: no matching allowed (from clippy.toml)
|
2020-09-24 15:32:03 -05:00
|
|
|
|
2021-09-08 20:12:02 -05:00
|
|
|
error: use of a disallowed method `std::iter::Iterator::sum`
|
2021-11-18 07:08:48 -06:00
|
|
|
--> $DIR/conf_disallowed_methods.rs:11:5
|
2020-09-24 15:32:03 -05:00
|
|
|
|
|
|
|
|
LL | a.iter().sum::<i32>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-01-30 00:18:56 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2020-09-24 15:32:03 -05:00
|
|
|
|