]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cast/cast-to-nil.stderr
Auto merge of #97191 - wesleywiser:main_thread_name, r=ChrisDenton
[rust.git] / src / test / ui / cast / cast-to-nil.stderr
1 error[E0605]: non-primitive cast: `u32` as `()`
2   --> $DIR/cast-to-nil.rs:2:21
3    |
4 LL | fn main() { let u = 0u32 as (); }
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`.