]> git.lizzy.rs Git - rust.git/blob - src/test/ui/tag-variant-cast-non-nullary.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / tag-variant-cast-non-nullary.stderr
1 error[E0605]: non-primitive cast: `non_nullary` as `isize`
2   --> $DIR/tag-variant-cast-non-nullary.rs:18:15
3    |
4 LL |     let val = v as isize; //~ ERROR non-primitive cast: `non_nullary` as `isize` [E0605]
5    |               ^^^^^^^^^^
6    |
7    = note: an `as` expression can only be used to convert between primitive types. Consider using the `From` trait
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0605`.