2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2022-11-15 17:01:20 +00:00
|
|
|
#![allow(unused)]
|
|
|
|
|
|
|
|
struct S {
|
|
|
|
f: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let ref _moved @ ref _from = String::from("foo"); //~ ERROR
|
|
|
|
let ref _moved @ ref _from = String::from("foo"); //~ ERROR
|
|
|
|
let ref _moved @ ref _from = String::from("foo"); //~ ERROR
|
|
|
|
//~^ ERROR
|
|
|
|
let ref _moved @ ref _from = String::from("foo"); // ok
|
|
|
|
let ref _moved @ S { ref f } = S { f: String::from("foo") }; //~ ERROR
|
|
|
|
let ref _moved @ S { ref f } = S { f: String::from("foo") }; //~ ERROR
|
|
|
|
//~^ ERROR
|
|
|
|
let ref _moved @ S { ref f } = S { f: String::from("foo") }; // ok
|
|
|
|
let ref _moved @ S { ref f } = S { f: String::from("foo") }; //~ ERROR
|
|
|
|
}
|