1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-20 12:22:35 +02:00
rustlings/solutions/06_move_semantics/move_semantics3.rs

23 lines
362 B
Rust
Raw Normal View History

2024-06-21 17:04:51 +02:00
fn fill_vec(mut vec: Vec<i32>) -> Vec<i32> {
// ^^^ added
vec.push(88);
vec
}
fn main() {
// You can optionally experiment here.
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn move_semantics3() {
let vec0 = vec![22, 44, 66];
let vec1 = fill_vec(vec0);
assert_eq!(vec1, [22, 44, 66, 88]);
}
}