rust/tests/ui/coercion/coerce-to-bang-cast.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
638 B
Plaintext
Raw Normal View History

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