rust-clippy/tests/ui/single_char_pattern.stderr

239 lines
7.6 KiB
Text
Raw Normal View History

2017-10-10 04:00:47 +00:00
error: single-character string constant used as pattern
--> $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");
2020-01-06 06:36:33 +00:00
| ^^^ help: try using a `char` instead: `'x'`
2018-10-06 16:18:06 +00:00
|
= 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
--> $DIR/single_char_pattern.rs:13:13
|
LL | x.split("ß");
| ^^^ help: try using a `char` instead: `'ß'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:14:13
|
LL | x.split("");
| ^^^ help: try using a `char` instead: `''`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:15:13
|
LL | x.split("💣");
| ^^^^ help: try using a `char` instead: `'💣'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:18:23
|
LL | x.split_inclusive("x");
| ^^^ help: try using a `char` instead: `'x'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:19:16
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.contains("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:20:19
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.starts_with("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:21:17
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.ends_with("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:22:12
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.find("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:23:13
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.rfind("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:24:14
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.rsplit("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:25:24
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.split_terminator("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:26:25
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.rsplit_terminator("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:27:17
2017-10-10 04:00:47 +00:00
|
LL | x.splitn(2, "x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:28:18
2017-10-10 04:00:47 +00:00
|
LL | x.rsplitn(2, "x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:29:18
|
LL | x.split_once("x");
| ^^^ help: try using a `char` instead: `'x'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:30:19
|
LL | x.rsplit_once("x");
| ^^^ help: try using a `char` instead: `'x'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:31:15
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.matches("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:32:16
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.rmatches("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:33:21
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.match_indices("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:34:22
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.rmatch_indices("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:35:26
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.trim_start_matches("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:36:24
2017-10-10 04:00:47 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x.trim_end_matches("x");
2020-01-06 06:36:33 +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
--> $DIR/single_char_pattern.rs:37:20
|
LL | x.strip_prefix("x");
| ^^^ help: try using a `char` instead: `'x'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:38:20
|
LL | x.strip_suffix("x");
| ^^^ help: try using a `char` instead: `'x'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:39:15
|
LL | x.replace("x", "y");
| ^^^ help: try using a `char` instead: `'x'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:40:16
|
LL | x.replacen("x", "y", 3);
| ^^^ help: try using a `char` instead: `'x'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:42:13
|
LL | x.split("\n");
| ^^^^ help: try using a `char` instead: `'\n'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:43:13
|
LL | x.split("'");
| ^^^ help: try using a `char` instead: `'\''`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:44:13
|
LL | x.split("\'");
| ^^^^ help: try using a `char` instead: `'\''`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:49:31
|
LL | x.replace(';', ",").split(","); // issue #2978
2020-01-06 06:36:33 +00:00
| ^^^ help: try using a `char` instead: `','`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:50:19
|
LL | x.starts_with("\x03"); // issue #2996
| ^^^^^^ help: try using a `char` instead: `'\x03'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:57:13
|
LL | x.split(r"a");
2020-01-06 06:36:33 +00:00
| ^^^^ help: try using a `char` instead: `'a'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:58:13
|
LL | x.split(r#"a"#);
2020-01-06 06:36:33 +00:00
| ^^^^^^ help: try using a `char` instead: `'a'`
2019-08-09 03:45:49 +00:00
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:59:13
2019-08-09 03:45:49 +00:00
|
LL | x.split(r###"a"###);
2020-01-06 06:36:33 +00:00
| ^^^^^^^^^^ help: try using a `char` instead: `'a'`
2019-08-09 03:45:49 +00:00
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:60:13
2019-08-09 03:45:49 +00:00
|
LL | x.split(r###"'"###);
| ^^^^^^^^^^ help: try using a `char` instead: `'\''`
2019-08-09 03:45:49 +00:00
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:61:13
2019-08-09 03:45:49 +00:00
|
LL | x.split(r###"#"###);
2020-01-06 06:36:33 +00:00
| ^^^^^^^^^^ help: try using a `char` instead: `'#'`
2019-08-09 03:45:49 +00:00
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:63:13
|
LL | x.split(r#"\"#);
| ^^^^^^ help: try using a `char` instead: `'\\'`
error: single-character string constant used as pattern
--> $DIR/single_char_pattern.rs:64:13
|
LL | x.split(r"\");
| ^^^^ help: try using a `char` instead: `'\\'`
error: aborting due to 39 previous errors
2018-01-16 16:06:27 +00:00