rustlings/exercises/06_move_semantics/move_semantics3.rs

27 lines
470 B
Rust
Raw Normal View History

2023-08-26 22:47:03 +00:00
// Make me compile without adding new lines -- just changing existing lines! (no
// lines with multiple semicolons necessary!)
2024-04-17 21:34:27 +00:00
fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
vec.push(88);
2024-04-17 21:34:27 +00:00
vec
}
2024-04-17 21:34:27 +00:00
fn main() {
// You can optionally experiment here.
}
2024-04-17 21:34:27 +00:00
#[cfg(test)]
mod tests {
use super::*;
2024-04-17 21:34:27 +00:00
#[test]
fn move_semantics3() {
let vec0 = vec![22, 44, 66];
let vec1 = fill_vec(vec0);
assert_eq!(vec1, vec![22, 44, 66, 88]);
}
}