1
1
error: missing `return` statement
2
- --> tests/ui/implicit_return.rs:11 :5
2
+ --> tests/ui/implicit_return.rs:16 :5
3
3
|
4
4
LL | true
5
5
| ^^^^ help: add `return` as shown: `return true`
@@ -8,85 +8,85 @@ LL | true
8
8
= help: to override `-D warnings` add `#[allow(clippy::implicit_return)]`
9
9
10
10
error: missing `return` statement
11
- --> tests/ui/implicit_return.rs:15 :15
11
+ --> tests/ui/implicit_return.rs:20 :15
12
12
|
13
13
LL | if true { true } else { false }
14
14
| ^^^^ help: add `return` as shown: `return true`
15
15
16
16
error: missing `return` statement
17
- --> tests/ui/implicit_return.rs:15 :29
17
+ --> tests/ui/implicit_return.rs:20 :29
18
18
|
19
19
LL | if true { true } else { false }
20
20
| ^^^^^ help: add `return` as shown: `return false`
21
21
22
22
error: missing `return` statement
23
- --> tests/ui/implicit_return.rs:21 :17
23
+ --> tests/ui/implicit_return.rs:26 :17
24
24
|
25
25
LL | true => false,
26
26
| ^^^^^ help: add `return` as shown: `return false`
27
27
28
28
error: missing `return` statement
29
- --> tests/ui/implicit_return.rs:22 :20
29
+ --> tests/ui/implicit_return.rs:27 :20
30
30
|
31
31
LL | false => { true },
32
32
| ^^^^ help: add `return` as shown: `return true`
33
33
34
34
error: missing `return` statement
35
- --> tests/ui/implicit_return.rs:35 :9
35
+ --> tests/ui/implicit_return.rs:40 :9
36
36
|
37
37
LL | break true;
38
38
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
39
39
40
40
error: missing `return` statement
41
- --> tests/ui/implicit_return.rs:42 :13
41
+ --> tests/ui/implicit_return.rs:47 :13
42
42
|
43
43
LL | break true;
44
44
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
45
45
46
46
error: missing `return` statement
47
- --> tests/ui/implicit_return.rs:50 :13
47
+ --> tests/ui/implicit_return.rs:55 :13
48
48
|
49
49
LL | break true;
50
50
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
51
51
52
52
error: missing `return` statement
53
- --> tests/ui/implicit_return.rs:68 :18
53
+ --> tests/ui/implicit_return.rs:73 :18
54
54
|
55
55
LL | let _ = || { true };
56
56
| ^^^^ help: add `return` as shown: `return true`
57
57
58
58
error: missing `return` statement
59
- --> tests/ui/implicit_return.rs:69 :16
59
+ --> tests/ui/implicit_return.rs:74 :16
60
60
|
61
61
LL | let _ = || true;
62
62
| ^^^^ help: add `return` as shown: `return true`
63
63
64
64
error: missing `return` statement
65
- --> tests/ui/implicit_return.rs:77 :5
65
+ --> tests/ui/implicit_return.rs:82 :5
66
66
|
67
67
LL | format!("test {}", "test")
68
68
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`
69
69
70
70
error: missing `return` statement
71
- --> tests/ui/implicit_return.rs:86 :5
71
+ --> tests/ui/implicit_return.rs:91 :5
72
72
|
73
73
LL | m!(true, false)
74
74
| ^^^^^^^^^^^^^^^ help: add `return` as shown: `return m!(true, false)`
75
75
76
76
error: missing `return` statement
77
- --> tests/ui/implicit_return.rs:92 :13
77
+ --> tests/ui/implicit_return.rs:97 :13
78
78
|
79
79
LL | break true;
80
80
| ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`
81
81
82
82
error: missing `return` statement
83
- --> tests/ui/implicit_return.rs:97 :17
83
+ --> tests/ui/implicit_return.rs:102 :17
84
84
|
85
85
LL | break 'outer false;
86
86
| ^^^^^^^^^^^^^^^^^^ help: change `break` to `return` as shown: `return false`
87
87
88
88
error: missing `return` statement
89
- --> tests/ui/implicit_return.rs:112 :5
89
+ --> tests/ui/implicit_return.rs:117 :5
90
90
|
91
91
LL | / loop {
92
92
LL | | m!(true);
@@ -101,7 +101,7 @@ LL + }
101
101
|
102
102
103
103
error: missing `return` statement
104
- --> tests/ui/implicit_return.rs:126 :5
104
+ --> tests/ui/implicit_return.rs:131 :5
105
105
|
106
106
LL | true
107
107
| ^^^^ help: add `return` as shown: `return true`
0 commit comments