summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/ref-pattern-binding.rs
blob: c0d4feb033098844624c30c67819776d9b122f42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// run-rustfix
#![allow(unused)]

struct S {
    f: String,
}

fn main() {
    let _moved @ _from = String::from("foo"); //~ ERROR
    let _moved @ ref _from = String::from("foo"); //~ ERROR
    let ref _moved @ _from = String::from("foo"); //~ ERROR
    //~^ ERROR
    let ref _moved @ ref _from = String::from("foo"); // ok
    let _moved @ S { f } = S { f: String::from("foo") }; //~ ERROR
    let ref _moved @ S { f } = S { f: String::from("foo") }; //~ ERROR
    //~^ ERROR
    let ref _moved @ S { ref f } = S { f: String::from("foo") }; // ok
    let _moved @ S { ref f } = S { f: String::from("foo") }; //~ ERROR
}