Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
d91e86e963128ebd9e0baee42d1504670dab1565
/
.
/
tests
/
ui
/
nonscalar-cast.rs
blob: 27429b44cd08602fe076164d04e22711cbaa1b5d [
file
] [
log
] [
blame
]
//@ 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
);
//~ ERROR non-primitive cast: `Foo` as `isize` [E0605]
}