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
}