Remove unncesssary compile-flags directive
This commit is contained in:
parent
627363e811
commit
10e29413bc
2 changed files with 14 additions and 16 deletions
|
|
@ -1,5 +1,3 @@
|
|||
//@compile-flags: --crate-name conf_disallowed_methods
|
||||
|
||||
#![allow(clippy::needless_raw_strings)]
|
||||
#![warn(clippy::disallowed_methods)]
|
||||
#![allow(clippy::useless_vec)]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
error: use of a disallowed method `regex::Regex::new`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:35:14
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:33:14
|
||||
|
|
||||
LL | let re = Regex::new(r"ab.*c").unwrap();
|
||||
| ^^^^^^^^^^
|
||||
|
|
@ -8,7 +8,7 @@ LL | let re = Regex::new(r"ab.*c").unwrap();
|
|||
= help: to override `-D warnings` add `#[allow(clippy::disallowed_methods)]`
|
||||
|
||||
error: use of a disallowed method `regex::Regex::is_match`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:36:8
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:34:8
|
||||
|
|
||||
LL | re.is_match("abc");
|
||||
| ^^^^^^^^
|
||||
|
|
@ -16,73 +16,73 @@ LL | re.is_match("abc");
|
|||
= note: no matching allowed
|
||||
|
||||
error: use of a disallowed method `std::iter::Iterator::sum`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:39:14
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:37:14
|
||||
|
|
||||
LL | a.iter().sum::<i32>();
|
||||
| ^^^
|
||||
|
||||
error: use of a disallowed method `slice::sort_unstable`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:41:7
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:39:7
|
||||
|
|
||||
LL | a.sort_unstable();
|
||||
| ^^^^^^^^^^^^^
|
||||
|
||||
error: use of a disallowed method `f32::clamp`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:44:20
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:42:20
|
||||
|
|
||||
LL | let _ = 2.0f32.clamp(3.0f32, 4.0f32);
|
||||
| ^^^^^
|
||||
|
||||
error: use of a disallowed method `regex::Regex::new`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:47:61
|
||||
--> tests/ui-toml/toml_disallowed_methods/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`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:50:28
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:48:28
|
||||
|
|
||||
LL | let in_call = Box::new(f32::clamp);
|
||||
| ^^^^^^^^^^
|
||||
|
||||
error: use of a disallowed method `regex::Regex::new`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:51:53
|
||||
--> tests/ui-toml/toml_disallowed_methods/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`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:54:31
|
||||
--> tests/ui-toml/toml_disallowed_methods/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`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:56:5
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:54:5
|
||||
|
|
||||
LL | local_fn();
|
||||
| ^^^^^^^^
|
||||
|
||||
error: use of a disallowed method `conf_disallowed_methods::local_mod::f`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:57:5
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:55:5
|
||||
|
|
||||
LL | local_mod::f();
|
||||
| ^^^^^^^^^^^^
|
||||
|
||||
error: use of a disallowed method `conf_disallowed_methods::Struct::method`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:59:7
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:57:7
|
||||
|
|
||||
LL | s.method();
|
||||
| ^^^^^^
|
||||
|
||||
error: use of a disallowed method `conf_disallowed_methods::Trait::provided_method`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:60:7
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:58:7
|
||||
|
|
||||
LL | s.provided_method();
|
||||
| ^^^^^^^^^^^^^^^
|
||||
|
||||
error: use of a disallowed method `conf_disallowed_methods::Trait::implemented_method`
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:61:7
|
||||
--> tests/ui-toml/toml_disallowed_methods/conf_disallowed_methods.rs:59:7
|
||||
|
|
||||
LL | s.implemented_method();
|
||||
| ^^^^^^^^^^^^^^^^^^
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue