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

error: aborting due to previous error