]> git.lizzy.rs Git - rust.git/blob - tests/ui/cast/issue-10991.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / cast / issue-10991.stderr
1 error[E0605]: non-primitive cast: `()` as `usize`
2   --> $DIR/issue-10991.rs:3:14
3    |
4 LL |     let _t = nil as usize;
5    |              ^^^^^^^^^^^^ an `as` expression can only be used to convert between primitive types or to coerce to a specific trait object
6
7 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0605`.