]> git.lizzy.rs Git - rust.git/blob - tests/ui/nonscalar-cast.stderr
Rollup merge of #107740 - oli-obk:lock_tcx, r=petrochenkov
[rust.git] / tests / ui / nonscalar-cast.stderr
1 error[E0605]: non-primitive cast: `Foo` as `isize`
2   --> $DIR/nonscalar-cast.rs:15:20
3    |
4 LL |     println!("{}", Foo { x: 1 } as isize);
5    |                    ^^^^^^^^^^^^^^^^^^^^^ help: consider using the `From` trait instead: `isize::from(Foo { x: 1 })`
6    |
7    = note: an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0605`.