]> git.proxmox.com Git - rustc.git/blame - src/test/ui/tag-variant-cast-non-nullary.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / tag-variant-cast-non-nullary.stderr
CommitLineData
0731742a 1error[E0605]: non-primitive cast: `NonNullary` as `isize`
f035d41b 2 --> $DIR/tag-variant-cast-non-nullary.rs:19:15
8faf50e0 3 |
532ac7d7 4LL | let val = v as isize;
f035d41b 5 | ^^^^^^^^^^ help: consider using the `From` trait instead: `isize::from(v)`
8faf50e0 6 |
f035d41b 7 = note: an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
8faf50e0
XL
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0605`.