summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/implicit_return.stderr
blob: 522bc3bf895a7a3159dccdb74e56fe032c10c483 (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
103
104
105
106
107
108
109
error: missing `return` statement
  --> $DIR/implicit_return.rs:12:5
   |
LL |     true
   |     ^^^^ help: add `return` as shown: `return true`
   |
   = note: `-D clippy::implicit-return` implied by `-D warnings`

error: missing `return` statement
  --> $DIR/implicit_return.rs:16:15
   |
LL |     if true { true } else { false }
   |               ^^^^ help: add `return` as shown: `return true`

error: missing `return` statement
  --> $DIR/implicit_return.rs:16:29
   |
LL |     if true { true } else { false }
   |                             ^^^^^ help: add `return` as shown: `return false`

error: missing `return` statement
  --> $DIR/implicit_return.rs:22:17
   |
LL |         true => false,
   |                 ^^^^^ help: add `return` as shown: `return false`

error: missing `return` statement
  --> $DIR/implicit_return.rs:23:20
   |
LL |         false => { true },
   |                    ^^^^ help: add `return` as shown: `return true`

error: missing `return` statement
  --> $DIR/implicit_return.rs:36:9
   |
LL |         break true;
   |         ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`

error: missing `return` statement
  --> $DIR/implicit_return.rs:43:13
   |
LL |             break true;
   |             ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`

error: missing `return` statement
  --> $DIR/implicit_return.rs:51:13
   |
LL |             break true;
   |             ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`

error: missing `return` statement
  --> $DIR/implicit_return.rs:69:18
   |
LL |     let _ = || { true };
   |                  ^^^^ help: add `return` as shown: `return true`

error: missing `return` statement
  --> $DIR/implicit_return.rs:70:16
   |
LL |     let _ = || true;
   |                ^^^^ help: add `return` as shown: `return true`

error: missing `return` statement
  --> $DIR/implicit_return.rs:78:5
   |
LL |     format!("test {}", "test")
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add `return` as shown: `return format!("test {}", "test")`

error: missing `return` statement
  --> $DIR/implicit_return.rs:87:5
   |
LL |     m!(true, false)
   |     ^^^^^^^^^^^^^^^ help: add `return` as shown: `return m!(true, false)`

error: missing `return` statement
  --> $DIR/implicit_return.rs:93:13
   |
LL |             break true;
   |             ^^^^^^^^^^ help: change `break` to `return` as shown: `return true`

error: missing `return` statement
  --> $DIR/implicit_return.rs:98:17
   |
LL |                 break 'outer false;
   |                 ^^^^^^^^^^^^^^^^^^ help: change `break` to `return` as shown: `return false`

error: missing `return` statement
  --> $DIR/implicit_return.rs:113:5
   |
LL | /     loop {
LL | |         m!(true);
LL | |     }
   | |_____^
   |
help: add `return` as shown
   |
LL ~     return loop {
LL +         m!(true);
LL +     }
   |

error: missing `return` statement
  --> $DIR/implicit_return.rs:127:5
   |
LL |     true
   |     ^^^^ help: add `return` as shown: `return true`

error: aborting due to 16 previous errors