mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
255 B
Rust
17 lines
255 B
Rust
// run-rustfix
|
|
|
|
#[derive(Debug)]
|
|
struct Foo {
|
|
x: isize
|
|
}
|
|
|
|
impl From<Foo> for isize {
|
|
fn from(val: Foo) -> isize {
|
|
val.x
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
println!("{}", isize::from(Foo { x: 1 })); //~ non-primitive cast: `Foo` as `isize` [E0605]
|
|
}
|