Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nonscalar-cast.rs
blob: 71e7c43a1db0990369ae503d7e5cbe5f377cb249 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
#[
derive
(
Debug
)]
struct
Foo
{
x
:
isize
}
impl
From
<
Foo
>
for
isize
{
fn
from
(
val
:
Foo
)
->
isize
{
val
.
x
}
}
fn
main
()
{
println
!(
"{}"
,
Foo
{
x
:
1
}
as
isize
);
//~ non-primitive cast: `Foo` as `isize` [E0605]
}