mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
22 lines
682 B
Text
22 lines
682 B
Text
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`
|
|
|
|
error: use of a disallowed method `regex::re_unicode::Regex::is_match`
|
|
--> $DIR/conf_disallowed_method.rs:8:5
|
|
|
|
|
LL | re.is_match("abc");
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `core::iter::traits::iterator::Iterator::sum`
|
|
--> $DIR/conf_disallowed_method.rs:11:5
|
|
|
|
|
LL | a.iter().sum::<i32>();
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|