about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/suspicious_splitn.stderr
blob: 910c905bc990ee716c12e2a9bbaa85c6b8f9d9be (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
error: `splitn` called with `0` splits
  --> tests/ui/suspicious_splitn.rs:10:13
   |
LL |     let _ = "a,b".splitn(0, ',');
   |             ^^^^^^^^^^^^^^^^^^^^
   |
   = note: the resulting iterator will always return `None`
   = note: `-D clippy::suspicious-splitn` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::suspicious_splitn)]`

error: `rsplitn` called with `0` splits
  --> tests/ui/suspicious_splitn.rs:13:13
   |
LL |     let _ = "a,b".rsplitn(0, ',');
   |             ^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the resulting iterator will always return `None`

error: `splitn` called with `1` split
  --> tests/ui/suspicious_splitn.rs:16:13
   |
LL |     let _ = "a,b".splitn(1, ',');
   |             ^^^^^^^^^^^^^^^^^^^^
   |
   = note: the resulting iterator will always return the entire string followed by `None`

error: `splitn` called with `0` splits
  --> tests/ui/suspicious_splitn.rs:19:13
   |
LL |     let _ = [0, 1, 2].splitn(0, |&x| x == 1);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the resulting iterator will always return `None`

error: `splitn_mut` called with `0` splits
  --> tests/ui/suspicious_splitn.rs:22:13
   |
LL |     let _ = [0, 1, 2].splitn_mut(0, |&x| x == 1);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the resulting iterator will always return `None`

error: `splitn` called with `1` split
  --> tests/ui/suspicious_splitn.rs:25:13
   |
LL |     let _ = [0, 1, 2].splitn(1, |&x| x == 1);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the resulting iterator will always return the entire slice followed by `None`

error: `rsplitn_mut` called with `1` split
  --> tests/ui/suspicious_splitn.rs:28:13
   |
LL |     let _ = [0, 1, 2].rsplitn_mut(1, |&x| x == 1);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the resulting iterator will always return the entire slice followed by `None`

error: `splitn` called with `1` split
  --> tests/ui/suspicious_splitn.rs:32:13
   |
LL |     let _ = "a,b".splitn(X + 1, ',');
   |             ^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: the resulting iterator will always return the entire string followed by `None`

error: `splitn` called with `0` splits
  --> tests/ui/suspicious_splitn.rs:35:13
   |
LL |     let _ = "a,b".splitn(X, ',');
   |             ^^^^^^^^^^^^^^^^^^^^
   |
   = note: the resulting iterator will always return `None`

error: aborting due to 9 previous errors