summaryrefslogtreecommitdiffstats
path: root/tests/ui/reachable/expr_return.stderr
blob: c9766f14d2cfa5b2bed6118426023b3ac5146f10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: unreachable expression
  --> $DIR/expr_return.rs:10:26
   |
LL |     let x: () = {return {return {return;}}};
   |                          ^^^^^^^^------^^
   |                          |       |
   |                          |       any code following this expression is unreachable
   |                          unreachable expression
   |
note: the lint level is defined here
  --> $DIR/expr_return.rs:4:9
   |
LL | #![deny(unreachable_code)]
   |         ^^^^^^^^^^^^^^^^

error: aborting due to 1 previous error