rustlings/exercises/move_semantics/move_semantics2.rs

27 lines
621 B
Rust
Raw Normal View History

2018-02-22 06:09:53 +00:00
// move_semantics2.rs
2022-04-06 08:29:27 +01:00
// Make me compile without changing line 13 or moving line 10!
// Execute `rustlings hint move_semantics2` or use the `hint` watch subcommand for a hint.
2018-11-09 19:31:14 +00:00
fn main() {
2023-02-27 20:16:40 +00:00
let mut vec0 = Vec::new();
2023-02-27 20:16:40 +00:00
let mut vec1 = fill_vec(&mut vec0);
// Do not change the following line!
println!("{} has length {} content `{:?}`", "vec0", vec0.len(), vec0);
vec1.push(88);
println!("{} has length {} content `{:?}`", "vec1", vec1.len(), vec1);
}
2023-02-27 20:16:40 +00:00
fn fill_vec(vec: &mut Vec<i32>) -> Vec<i32> {
let mut vec = vec;
vec.push(22);
vec.push(44);
vec.push(66);
2023-02-27 20:16:40 +00:00
vec.to_vec()
}