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