]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nonscalar-cast.stderr
Merge branch 'master' into rusty-hermit
[rust.git] / src / test / ui / nonscalar-cast.stderr
1 error[E0605]: non-primitive cast: `Foo` as `isize`
2   --> $DIR/nonscalar-cast.rs:7:20
3    |
4 LL |     println!("{}", Foo { x: 1 } as isize);
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`.