summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-109436.rs
blob: e45ee5991db288c02b12b959b8b4fb3872cc3e3e (plain)
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
}