mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
10 lines
254 B
Rust
10 lines
254 B
Rust
// Check that we do not suggest `ref f` here in the `main()` function.
|
|
struct Foo {
|
|
pub v: Vec<String>,
|
|
}
|
|
|
|
fn main() {
|
|
let mut f = Foo { v: Vec::new() };
|
|
f.v.push("hello".to_string());
|
|
let e = f.v[0]; //~ ERROR cannot move out of index
|
|
}
|