]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/starts_ends_with.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / starts_ends_with.stderr
index b3fb444b5621de78e8d21ae114658e11991028d6..7c726d0e010263ffca9352d1c41325cb042e9e86 100644 (file)
@@ -1,77 +1,77 @@
 error: you should use the `starts_with` method
--> $DIR/starts_ends_with.rs:9:5
-  |
-9 |     "".chars().next() == Some(' ');
-  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".starts_with(' ')`
-  |
-  = note: `-D clippy::chars-next-cmp` implied by `-D warnings`
 --> $DIR/starts_ends_with.rs:8:5
+   |
+LL |     "".chars().next() == Some(' ');
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".starts_with(' ')`
+   |
+   = note: `-D clippy::chars-next-cmp` implied by `-D warnings`
 
 error: you should use the `starts_with` method
-  --> $DIR/starts_ends_with.rs:10:5
+  --> $DIR/starts_ends_with.rs:9:5
    |
-10 |     Some(' ') != "".chars().next();
+LL |     Some(' ') != "".chars().next();
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".starts_with(' ')`
 
 error: you should use the `starts_with` method
-  --> $DIR/starts_ends_with.rs:15:8
+  --> $DIR/starts_ends_with.rs:14:8
    |
-15 |     if s.chars().next().unwrap() == 'f' { // s.starts_with('f')
+LL |     if s.chars().next().unwrap() == 'f' {
    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `s.starts_with('f')`
 
 error: you should use the `ends_with` method
   --> $DIR/starts_ends_with.rs:18:8
    |
-18 |     if s.chars().next_back().unwrap() == 'o' { // s.ends_with('o')
+LL |     if s.chars().next_back().unwrap() == 'o' {
    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `s.ends_with('o')`
    |
    = note: `-D clippy::chars-last-cmp` implied by `-D warnings`
 
 error: you should use the `ends_with` method
-  --> $DIR/starts_ends_with.rs:21:8
+  --> $DIR/starts_ends_with.rs:22:8
    |
-21 |     if s.chars().last().unwrap() == 'o' { // s.ends_with('o')
+LL |     if s.chars().last().unwrap() == 'o' {
    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `s.ends_with('o')`
 
 error: you should use the `starts_with` method
-  --> $DIR/starts_ends_with.rs:24:8
+  --> $DIR/starts_ends_with.rs:26:8
    |
-24 |     if s.chars().next().unwrap() != 'f' { // !s.starts_with('f')
+LL |     if s.chars().next().unwrap() != 'f' {
    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.starts_with('f')`
 
 error: you should use the `ends_with` method
-  --> $DIR/starts_ends_with.rs:27:8
+  --> $DIR/starts_ends_with.rs:30:8
    |
-27 |     if s.chars().next_back().unwrap() != 'o' { // !s.ends_with('o')
+LL |     if s.chars().next_back().unwrap() != 'o' {
    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.ends_with('o')`
 
 error: you should use the `ends_with` method
-  --> $DIR/starts_ends_with.rs:30:8
+  --> $DIR/starts_ends_with.rs:34:8
    |
-30 |     if s.chars().last().unwrap() != 'o' { // !s.ends_with('o')
+LL |     if s.chars().last().unwrap() != 'o' {
    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.ends_with('o')`
 
 error: you should use the `ends_with` method
-  --> $DIR/starts_ends_with.rs:37:5
+  --> $DIR/starts_ends_with.rs:42:5
    |
-37 |     "".chars().last() == Some(' ');
+LL |     "".chars().last() == Some(' ');
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".ends_with(' ')`
 
 error: you should use the `ends_with` method
-  --> $DIR/starts_ends_with.rs:38:5
+  --> $DIR/starts_ends_with.rs:43:5
    |
-38 |     Some(' ') != "".chars().last();
+LL |     Some(' ') != "".chars().last();
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".ends_with(' ')`
 
 error: you should use the `ends_with` method
-  --> $DIR/starts_ends_with.rs:39:5
+  --> $DIR/starts_ends_with.rs:44:5
    |
-39 |     "".chars().next_back() == Some(' ');
+LL |     "".chars().next_back() == Some(' ');
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".ends_with(' ')`
 
 error: you should use the `ends_with` method
-  --> $DIR/starts_ends_with.rs:40:5
+  --> $DIR/starts_ends_with.rs:45:5
    |
-40 |     Some(' ') != "".chars().next_back();
+LL |     Some(' ') != "".chars().next_back();
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".ends_with(' ')`
 
 error: aborting due to 12 previous errors