2017-10-10 04:00:47 +00:00
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:7:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.split("x");
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::single-char-pattern` implied by `-D warnings`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:24:16
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.contains("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:25:19
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.starts_with("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:26:17
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.ends_with("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:27:12
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.find("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:28:13
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.rfind("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:29:14
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.rsplit("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:30:24
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.split_terminator("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:31:25
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.rsplit_terminator("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:32:17
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.splitn(0, "x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:33:18
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.rsplitn(0, "x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:34:15
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.matches("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:35:16
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.rmatches("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:36:21
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.match_indices("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:37:22
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.rmatch_indices("x");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:38:26
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.trim_start_matches("x");
|
2018-12-14 11:35:44 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:39:24
|
2017-10-10 04:00:47 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.trim_end_matches("x");
|
2018-12-14 11:35:44 +00:00
|
|
|
| ^^^ help: try using a char instead: `'x'`
|
2017-10-10 04:00:47 +00:00
|
|
|
|
2018-03-02 15:00:01 +00:00
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:41:13
|
2018-03-02 15:00:01 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.split("/n");
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^^ help: try using a char instead: `'/n'`
|
2018-03-02 15:00:01 +00:00
|
|
|
|
2018-07-31 10:20:32 +00:00
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:46:31
|
2018-07-31 10:20:32 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.replace(";", ",").split(","); // issue #2978
|
2018-07-31 10:20:32 +00:00
|
|
|
| ^^^ help: try using a char instead: `','`
|
|
|
|
|
2018-08-03 08:19:29 +00:00
|
|
|
error: single-character string constant used as pattern
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/single_char_pattern.rs:47:19
|
2018-08-03 08:19:29 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | x.starts_with("/x03"); // issue #2996
|
2018-08-03 08:19:29 +00:00
|
|
|
| ^^^^^^ help: try using a char instead: `'/x03'`
|
|
|
|
|
|
|
|
error: aborting due to 20 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|