]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cast/cast-to-nil.stderr
478f6b69dafc8c01161d14455c2a15258a9b86e5
[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    |                     ^^^^^^^^^^
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`.