mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
656 B
Rust
20 lines
656 B
Rust
//@ run-rustfix
|
|
#![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
|
|
}
|