]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/single_char_pattern.rs
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / single_char_pattern.rs
index c4e88e9ee2bcb4600038e0c0c3e14509160867a8..32afe339cd81cc0cf07d87dc231f4368be748392 100644 (file)
@@ -1,4 +1,6 @@
-#![feature(tool_lints)]
+// run-rustfix
+
+#![allow(unused_must_use)]
 
 use std::collections::HashSet;
 
@@ -15,7 +17,7 @@ fn main() {
     // should have done this but produced an ICE
     //
     // We may not want to suggest changing these anyway
-    // See: https://github.com/rust-lang-nursery/rust-clippy/issues/650#issuecomment-184328984
+    // See: https://github.com/rust-lang/rust-clippy/issues/650#issuecomment-184328984
     x.split("ß");
     x.split("ℝ");
     x.split("💣");
@@ -35,10 +37,12 @@ fn main() {
     x.rmatches("x");
     x.match_indices("x");
     x.rmatch_indices("x");
-    x.trim_left_matches("x");
-    x.trim_right_matches("x");
+    x.trim_start_matches("x");
+    x.trim_end_matches("x");
     // Make sure we escape characters correctly.
     x.split("\n");
+    x.split("'");
+    x.split("\'");
 
     let h = HashSet::<String>::new();
     h.contains("X"); // should not warn
@@ -49,4 +53,11 @@ fn main() {
     // Issue #3204
     const S: &str = "#";
     x.find(S);
+
+    // Raw string
+    x.split(r"a");
+    x.split(r#"a"#);
+    x.split(r###"a"###);
+    x.split(r###"'"###);
+    x.split(r###"#"###);
 }