about summary refs log tree commit diff
path: root/src/test/ui/reachable/expr_unary.stderr
blob: 44887f0ee523be4816899901ac265b6d059f149d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0600]: cannot apply unary operator `!` to type `!`
  --> $DIR/expr_unary.rs:8:16
   |
LL |     let x: ! = ! { return; }; //~ ERROR unreachable
   |                ^^^^^^^^^^^^^ cannot apply unary operator `!`

error: unreachable expression
  --> $DIR/expr_unary.rs:8:16
   |
LL |     let x: ! = ! { return; }; //~ ERROR unreachable
   |                ^^^^^^^^^^^^^
   |
note: lint level defined here
  --> $DIR/expr_unary.rs:5:9
   |
LL | #![deny(unreachable_code)]
   |         ^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0600`.