Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
issue-109436.rs
blob: e45ee5991db288c02b12b959b8b4fb3872cc3e3e [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
;
struct
Bar
;
impl
From
<&
Foo
>
for
Bar
{
fn
from
(
foo
:
&
Foo
)
->
Bar
{
Bar
}
}
fn
main
()
{
let
foo
=
Foo
;
let
b
:
Bar
=
foo
.
into
();
//~ ERROR E0277
}