2018-12-16 22:21:47 -05:00
|
|
|
error[E0605]: non-primitive cast: `Foo` as `isize`
|
2020-06-14 21:36:25 -07:00
|
|
|
--> $DIR/nonscalar-cast.rs:15:20
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | println!("{}", Foo { x: 1 } as isize);
|
2020-06-14 21:36:25 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using the `From` trait instead: `isize::from(Foo { x: 1 })`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-06-14 21:36:25 -07:00
|
|
|
= note: 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 previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0605`.
|