summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/starts_ends_with.stderr
blob: 2dd9f53b8026afd215c7fdd3b436fab8e61bad21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
error: you should use the `starts_with` method
  --> $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:9:5
   |
LL |     Some(' ') != "".chars().next();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".starts_with(' ')`

error: you should use the `starts_with` method
  --> $DIR/starts_ends_with.rs:12:5
   |
LL |     "".chars().next() == Some('/n');
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".starts_with('/n')`

error: you should use the `starts_with` method
  --> $DIR/starts_ends_with.rs:13:5
   |
LL |     Some('/n') != "".chars().next();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".starts_with('/n')`

error: you should use the `starts_with` method
  --> $DIR/starts_ends_with.rs:18:8
   |
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:22:8
   |
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:26:8
   |
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:30:8
   |
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:34:8
   |
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:38:8
   |
LL |     if s.chars().last().unwrap() != '/n' {
   |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.ends_with('/n')`

error: you should use the `ends_with` method
  --> $DIR/starts_ends_with.rs:46:5
   |
LL |     "".chars().last() == Some(' ');
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".ends_with(' ')`

error: you should use the `ends_with` method
  --> $DIR/starts_ends_with.rs:47:5
   |
LL |     Some(' ') != "".chars().last();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".ends_with(' ')`

error: you should use the `ends_with` method
  --> $DIR/starts_ends_with.rs:48:5
   |
LL |     "".chars().next_back() == Some(' ');
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".ends_with(' ')`

error: you should use the `ends_with` method
  --> $DIR/starts_ends_with.rs:49:5
   |
LL |     Some(' ') != "".chars().next_back();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".ends_with(' ')`

error: you should use the `ends_with` method
  --> $DIR/starts_ends_with.rs:52:5
   |
LL |     "".chars().last() == Some('/n');
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".ends_with('/n')`

error: you should use the `ends_with` method
  --> $DIR/starts_ends_with.rs:53:5
   |
LL |     Some('/n') != "".chars().last();
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".ends_with('/n')`

error: aborting due to 16 previous errors