summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-8850.stderr
blob: 620fd1edaf790e81c8bfdcab2060f4c5af5f1a05 (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/ice-8850.rs:4:5
   |
LL |     let res = FN() + 1;
   |     ------------------- unnecessary `let` binding
LL |     res
   |     ^^^
   |
   = note: `-D clippy::let-and-return` implied by `-D warnings`
help: return the expression directly
   |
LL ~     
LL ~     FN() + 1
   |

error: returning the result of a `let` binding from a block
  --> $DIR/ice-8850.rs:10:5
   |
LL |     let res = FN() + 1;
   |     ------------------- unnecessary `let` binding
LL |     res
   |     ^^^
   |
help: return the expression directly
   |
LL ~     
LL ~     FN() + 1
   |

error: returning the result of a `let` binding from a block
  --> $DIR/ice-8850.rs:24:5
   |
LL |     let res = FN() + 1;
   |     ------------------- unnecessary `let` binding
LL |     res
   |     ^^^
   |
help: return the expression directly
   |
LL ~     
LL ~     FN() + 1
   |

error: aborting due to 3 previous errors