granite-rust/src/test/ui/coercion/coerce-to-bang-cast.stderr

20 lines
657 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0605]: non-primitive cast: `i32` as `!`
--> $DIR/coerce-to-bang-cast.rs:6:13
2018-08-08 14:28:26 +02:00
|
LL | let y = {return; 22} as !;
| ^^^^^^^^^^^^^^^^^
|
= note: an `as` expression can only be used to convert between primitive types. Consider using the `From` trait
error[E0605]: non-primitive cast: `i32` as `!`
--> $DIR/coerce-to-bang-cast.rs:11:13
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | let y = 22 as !;
2018-08-08 14:28:26 +02:00
| ^^^^^^^
|
= note: an `as` expression can only be used to convert between primitive types. Consider using the `From` trait
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0605`.