9b38fb7b71
To stay consistent with the sister lint disallowed_type, also rename the disallowed_method lint to disallowed_methods.
25 lines
698 B
Plaintext
25 lines
698 B
Plaintext
error: use of a disallowed method `regex::Regex::new`
|
|
--> $DIR/conf_disallowed_methods.rs:7:14
|
|
|
|
|
LL | let re = Regex::new(r"ab.*c").unwrap();
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::disallowed-methods` implied by `-D warnings`
|
|
|
|
error: use of a disallowed method `regex::Regex::is_match`
|
|
--> $DIR/conf_disallowed_methods.rs:8:5
|
|
|
|
|
LL | re.is_match("abc");
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: no matching allowed (from clippy.toml)
|
|
|
|
error: use of a disallowed method `std::iter::Iterator::sum`
|
|
--> $DIR/conf_disallowed_methods.rs:11:5
|
|
|
|
|
LL | a.iter().sum::<i32>();
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|