65 lines
2.6 KiB
Plaintext
65 lines
2.6 KiB
Plaintext
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
|
--> tests/ui/string_lit_chars_any.rs:18:5
|
|
|
|
|
LL | "\\.+*?()|[]{}^$#&-~".chars().any(|x| x == c);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::string-lit-chars-any` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::string_lit_chars_any)]`
|
|
help: use `matches!(...)` instead
|
|
|
|
|
LL - "\\.+*?()|[]{}^$#&-~".chars().any(|x| x == c);
|
|
LL + matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
|
|
|
|
|
|
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
|
--> tests/ui/string_lit_chars_any.rs:20:5
|
|
|
|
|
LL | r#"\.+*?()|[]{}^$#&-~"#.chars().any(|x| x == c);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use `matches!(...)` instead
|
|
|
|
|
LL - r#"\.+*?()|[]{}^$#&-~"#.chars().any(|x| x == c);
|
|
LL + matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
|
|
|
|
|
|
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
|
--> tests/ui/string_lit_chars_any.rs:22:5
|
|
|
|
|
LL | "\\.+*?()|[]{}^$#&-~".chars().any(|x| c == x);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use `matches!(...)` instead
|
|
|
|
|
LL - "\\.+*?()|[]{}^$#&-~".chars().any(|x| c == x);
|
|
LL + matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
|
|
|
|
|
|
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
|
--> tests/ui/string_lit_chars_any.rs:24:5
|
|
|
|
|
LL | r#"\.+*?()|[]{}^$#&-~"#.chars().any(|x| c == x);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use `matches!(...)` instead
|
|
|
|
|
LL - r#"\.+*?()|[]{}^$#&-~"#.chars().any(|x| c == x);
|
|
LL + matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
|
|
|
|
|
|
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
|
--> tests/ui/string_lit_chars_any.rs:27:5
|
|
|
|
|
LL | "\\.+*?()|[]{}^$#&-~".chars().any(|x| { x == c });
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: use `matches!(...)` instead
|
|
|
|
|
LL - "\\.+*?()|[]{}^$#&-~".chars().any(|x| { x == c });
|
|
LL + matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|