2023-06-30 19:39:17 +00:00
|
|
|
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/string_lit_chars_any.rs:18:5
|
2023-06-30 19:39:17 +00:00
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | "\\.+*?()|[]{}^$#&-~".chars().any(|x| x == c);
|
2023-06-30 19:39:17 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::string-lit-chars-any` implied by `-D warnings`
|
|
|
|
help: use `matches!(...)` instead
|
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
2023-06-30 19:39:17 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/string_lit_chars_any.rs:19:5
|
2023-06-30 19:39:17 +00:00
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | r#"\.+*?()|[]{}^$#&-~"#.chars().any(|x| x == c);
|
2023-06-30 19:39:17 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use `matches!(...)` instead
|
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
2023-06-30 19:39:17 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/string_lit_chars_any.rs:20:5
|
2023-06-30 19:39:17 +00:00
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | "\\.+*?()|[]{}^$#&-~".chars().any(|x| c == x);
|
2023-06-30 19:39:17 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use `matches!(...)` instead
|
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
2023-06-30 19:39:17 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/string_lit_chars_any.rs:21:5
|
2023-06-30 19:39:17 +00:00
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | r#"\.+*?()|[]{}^$#&-~"#.chars().any(|x| c == x);
|
2023-06-30 19:39:17 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use `matches!(...)` instead
|
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
2023-06-30 19:39:17 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: usage of `.chars().any(...)` to check if a char matches any from a string literal
|
2023-07-27 11:40:22 +00:00
|
|
|
--> $DIR/string_lit_chars_any.rs:23:5
|
2023-06-30 19:39:17 +00:00
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | "\\.+*?()|[]{}^$#&-~".chars().any(|x| { x == c });
|
2023-06-30 19:39:17 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use `matches!(...)` instead
|
|
|
|
|
|
2023-08-14 15:59:00 +00:00
|
|
|
LL | matches!(c, '\\' | '.' | '+' | '*' | '?' | '(' | ')' | '|' | '[' | ']' | '{' | '}' | '^' | '$' | '#' | '&' | '-' | '~');
|
2023-06-30 19:39:17 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|