summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/let_and_return.stderr
blob: 17fd694bf7ac9ab12b7c1366b9812b62a99842c0 (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
error: returning the result of a `let` binding from a block
  --> $DIR/let_and_return.rs:7:5
   |
LL |     let x = 5;
   |     ---------- unnecessary `let` binding
LL |     x
   |     ^
   |
   = note: `-D clippy::let-and-return` implied by `-D warnings`
help: return the expression directly
   |
LL ~     
LL ~     5
   |

error: returning the result of a `let` binding from a block
  --> $DIR/let_and_return.rs:13:9
   |
LL |         let x = 5;
   |         ---------- unnecessary `let` binding
LL |         x
   |         ^
   |
help: return the expression directly
   |
LL ~         
LL ~         5
   |

error: returning the result of a `let` binding from a block
  --> $DIR/let_and_return.rs:164:13
   |
LL |             let clone = Arc::clone(&self.foo);
   |             ---------------------------------- unnecessary `let` binding
LL |             clone
   |             ^^^^^
   |
help: return the expression directly
   |
LL ~             
LL ~             Arc::clone(&self.foo) as _
   |

error: aborting due to 3 previous errors