2021-01-30 00:18:56 -06:00
|
|
|
error: use of a disallowed method `regex::re_unicode::Regex::new`
|
|
|
|
--> $DIR/conf_disallowed_method.rs:7:14
|
|
|
|
|
|
|
|
|
LL | let re = Regex::new(r"ab.*c").unwrap();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::disallowed-method` implied by `-D warnings`
|
|
|
|
|
2020-09-25 09:38:19 -05:00
|
|
|
error: use of a disallowed method `regex::re_unicode::Regex::is_match`
|
2021-01-30 00:18:56 -06:00
|
|
|
--> $DIR/conf_disallowed_method.rs:8:5
|
2020-09-24 15:32:03 -05:00
|
|
|
|
|
|
|
|
LL | re.is_match("abc");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-09-25 09:38:19 -05:00
|
|
|
error: use of a disallowed method `core::iter::traits::iterator::Iterator::sum`
|
2021-01-30 00:18:56 -06:00
|
|
|
--> $DIR/conf_disallowed_method.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
|
|
|
|