91 lines
2.8 KiB
Plaintext
91 lines
2.8 KiB
Plaintext
error: use of a disallowed method `regex::Regex::new`
|
|
--> $DIR/conf_disallowed_methods.rs:34: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:35: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:38:5
|
|
|
|
|
LL | a.iter().sum::<i32>();
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `slice::sort_unstable`
|
|
--> $DIR/conf_disallowed_methods.rs:40:5
|
|
|
|
|
LL | a.sort_unstable();
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `f32::clamp`
|
|
--> $DIR/conf_disallowed_methods.rs:42:13
|
|
|
|
|
LL | let _ = 2.0f32.clamp(3.0f32, 4.0f32);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `regex::Regex::new`
|
|
--> $DIR/conf_disallowed_methods.rs:45:61
|
|
|
|
|
LL | let indirect: fn(&str) -> Result<Regex, regex::Error> = Regex::new;
|
|
| ^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `f32::clamp`
|
|
--> $DIR/conf_disallowed_methods.rs:48:28
|
|
|
|
|
LL | let in_call = Box::new(f32::clamp);
|
|
| ^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `regex::Regex::new`
|
|
--> $DIR/conf_disallowed_methods.rs:49:53
|
|
|
|
|
LL | let in_method_call = ["^", "$"].into_iter().map(Regex::new);
|
|
| ^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `futures::stream::select_all`
|
|
--> $DIR/conf_disallowed_methods.rs:52:31
|
|
|
|
|
LL | let same_name_as_module = select_all(vec![empty::<()>()]);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `conf_disallowed_methods::local_fn`
|
|
--> $DIR/conf_disallowed_methods.rs:54:5
|
|
|
|
|
LL | local_fn();
|
|
| ^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `conf_disallowed_methods::local_mod::f`
|
|
--> $DIR/conf_disallowed_methods.rs:55:5
|
|
|
|
|
LL | local_mod::f();
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `conf_disallowed_methods::Struct::method`
|
|
--> $DIR/conf_disallowed_methods.rs:57:5
|
|
|
|
|
LL | s.method();
|
|
| ^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `conf_disallowed_methods::Trait::provided_method`
|
|
--> $DIR/conf_disallowed_methods.rs:58:5
|
|
|
|
|
LL | s.provided_method();
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: use of a disallowed method `conf_disallowed_methods::Trait::implemented_method`
|
|
--> $DIR/conf_disallowed_methods.rs:59:5
|
|
|
|
|
LL | s.implemented_method();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 14 previous errors
|
|
|