2018-08-08 14:28:26 +02:00
|
|
|
error[E0605]: non-primitive cast: `i32` as `!`
|
2020-05-30 19:42:22 +02:00
|
|
|
--> $DIR/coerce-to-bang-cast.rs:4:13
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let y = {return; 22} as !;
|
2020-06-14 21:36:25 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^ an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error[E0605]: non-primitive cast: `i32` as `!`
|
2020-05-30 19:42:22 +02:00
|
|
|
--> $DIR/coerce-to-bang-cast.rs:9:13
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let y = 22 as !;
|
2020-06-14 21:36:25 -07:00
|
|
|
| ^^^^^^^ an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0605`.
|