2019-01-04 04:22:38 -06:00
|
|
|
|
// run-rustfix
|
|
|
|
|
|
2019-01-31 01:27:04 -06:00
|
|
|
|
#![allow(unused_must_use)]
|
|
|
|
|
|
2017-10-09 23:00:47 -05:00
|
|
|
|
use std::collections::HashSet;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let x = "foo";
|
|
|
|
|
x.split("x");
|
|
|
|
|
x.split("xx");
|
|
|
|
|
x.split('x');
|
|
|
|
|
|
|
|
|
|
let y = "x";
|
|
|
|
|
x.split(y);
|
|
|
|
|
// Not yet testing for multi-byte characters
|
2018-07-28 10:34:52 -05:00
|
|
|
|
// Changing `r.len() == 1` to `r.chars().count() == 1` in `lint_clippy::single_char_pattern`
|
2017-10-09 23:00:47 -05:00
|
|
|
|
// should have done this but produced an ICE
|
|
|
|
|
//
|
|
|
|
|
// We may not want to suggest changing these anyway
|
2018-11-21 21:40:09 -06:00
|
|
|
|
// See: https://github.com/rust-lang/rust-clippy/issues/650#issuecomment-184328984
|
2017-10-09 23:00:47 -05:00
|
|
|
|
x.split("ß");
|
|
|
|
|
x.split("ℝ");
|
|
|
|
|
x.split("💣");
|
|
|
|
|
// Can't use this lint for unicode code points which don't fit in a char
|
|
|
|
|
x.split("❤️");
|
|
|
|
|
x.contains("x");
|
|
|
|
|
x.starts_with("x");
|
|
|
|
|
x.ends_with("x");
|
|
|
|
|
x.find("x");
|
|
|
|
|
x.rfind("x");
|
|
|
|
|
x.rsplit("x");
|
|
|
|
|
x.split_terminator("x");
|
|
|
|
|
x.rsplit_terminator("x");
|
|
|
|
|
x.splitn(0, "x");
|
|
|
|
|
x.rsplitn(0, "x");
|
|
|
|
|
x.matches("x");
|
|
|
|
|
x.rmatches("x");
|
|
|
|
|
x.match_indices("x");
|
|
|
|
|
x.rmatch_indices("x");
|
2018-12-14 05:35:44 -06:00
|
|
|
|
x.trim_start_matches("x");
|
|
|
|
|
x.trim_end_matches("x");
|
2018-03-02 09:00:01 -06:00
|
|
|
|
// Make sure we escape characters correctly.
|
|
|
|
|
x.split("\n");
|
2019-04-08 07:55:50 -05:00
|
|
|
|
x.split("'");
|
|
|
|
|
x.split("\'");
|
2017-10-09 23:00:47 -05:00
|
|
|
|
|
|
|
|
|
let h = HashSet::<String>::new();
|
|
|
|
|
h.contains("X"); // should not warn
|
2018-07-31 05:20:32 -05:00
|
|
|
|
|
|
|
|
|
x.replace(";", ",").split(","); // issue #2978
|
2018-08-03 03:19:29 -05:00
|
|
|
|
x.starts_with("\x03"); // issue #2996
|
2018-09-23 08:25:10 -05:00
|
|
|
|
|
|
|
|
|
// Issue #3204
|
|
|
|
|
const S: &str = "#";
|
|
|
|
|
x.find(S);
|
2019-08-08 22:45:49 -05:00
|
|
|
|
|
|
|
|
|
// Raw string
|
|
|
|
|
x.split(r"a");
|
|
|
|
|
x.split(r#"a"#);
|
2019-08-08 22:45:49 -05:00
|
|
|
|
x.split(r###"a"###);
|
|
|
|
|
x.split(r###"'"###);
|
|
|
|
|
x.split(r###"#"###);
|
2017-10-09 23:00:47 -05:00
|
|
|
|
}
|