]> git.lizzy.rs Git - rust.git/blob - tests/ui/starts_ends_with.stderr
Merge pull request #2984 from flip1995/single_char_pattern
[rust.git] / tests / ui / starts_ends_with.stderr
1 error: you should use the `starts_with` method
2  --> $DIR/starts_ends_with.rs:7:5
3   |
4 7 |     "".chars().next() == Some(' ');
5   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".starts_with(' ')`
6   |
7   = note: `-D chars-next-cmp` implied by `-D warnings`
8
9 error: you should use the `starts_with` method
10  --> $DIR/starts_ends_with.rs:8:5
11   |
12 8 |     Some(' ') != "".chars().next();
13   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".starts_with(' ')`
14
15 error: you should use the `starts_with` method
16   --> $DIR/starts_ends_with.rs:13:8
17    |
18 13 |     if s.chars().next().unwrap() == 'f' { // s.starts_with('f')
19    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `s.starts_with('f')`
20
21 error: you should use the `ends_with` method
22   --> $DIR/starts_ends_with.rs:16:8
23    |
24 16 |     if s.chars().next_back().unwrap() == 'o' { // s.ends_with('o')
25    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `s.ends_with('o')`
26    |
27    = note: `-D chars-last-cmp` implied by `-D warnings`
28
29 error: you should use the `ends_with` method
30   --> $DIR/starts_ends_with.rs:19:8
31    |
32 19 |     if s.chars().last().unwrap() == 'o' { // s.ends_with('o')
33    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `s.ends_with('o')`
34
35 error: you should use the `starts_with` method
36   --> $DIR/starts_ends_with.rs:22:8
37    |
38 22 |     if s.chars().next().unwrap() != 'f' { // !s.starts_with('f')
39    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.starts_with('f')`
40
41 error: you should use the `ends_with` method
42   --> $DIR/starts_ends_with.rs:25:8
43    |
44 25 |     if s.chars().next_back().unwrap() != 'o' { // !s.ends_with('o')
45    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.ends_with('o')`
46
47 error: you should use the `ends_with` method
48   --> $DIR/starts_ends_with.rs:28:8
49    |
50 28 |     if s.chars().last().unwrap() != 'o' { // !s.ends_with('o')
51    |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.ends_with('o')`
52
53 error: you should use the `ends_with` method
54   --> $DIR/starts_ends_with.rs:35:5
55    |
56 35 |     "".chars().last() == Some(' ');
57    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".ends_with(' ')`
58
59 error: you should use the `ends_with` method
60   --> $DIR/starts_ends_with.rs:36:5
61    |
62 36 |     Some(' ') != "".chars().last();
63    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".ends_with(' ')`
64
65 error: you should use the `ends_with` method
66   --> $DIR/starts_ends_with.rs:37:5
67    |
68 37 |     "".chars().next_back() == Some(' ');
69    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".ends_with(' ')`
70
71 error: you should use the `ends_with` method
72   --> $DIR/starts_ends_with.rs:38:5
73    |
74 38 |     Some(' ') != "".chars().next_back();
75    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".ends_with(' ')`
76
77 error: aborting due to 12 previous errors
78