]> git.proxmox.com Git - rustc.git/blame_incremental - src/test/ui/tag-variant-cast-non-nullary.stderr
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / tag-variant-cast-non-nullary.stderr
... / ...
CommitLineData
1error[E0605]: non-primitive cast: `NonNullary` as `isize`
2 --> $DIR/tag-variant-cast-non-nullary.rs:8:15
3 |
4LL | let val = v as isize; //~ ERROR non-primitive cast: `NonNullary` 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
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0605`.