1 2 3 4 5 6 7 8 9 10 11 12 13
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 }