summaryrefslogtreecommitdiffstats
path: root/tests/ui/reachable/expr_return.stderr
blob: 3791559f44000b98a56ff8bcbd13bc698ee92955 (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 previous error