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

23 lines
413 B
Rust
Raw Normal View History

2024-06-21 17:04:51 +02:00
// TODO: Fix the compiler error in the function without adding any new line.
2024-04-17 23:34:27 +02:00
fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
vec.push(88);
2024-04-17 23:34:27 +02:00
vec
}
2024-04-17 23:34:27 +02:00
fn main() {
// You can optionally experiment here.
}
2024-04-17 23:34:27 +02:00
#[cfg(test)]
mod tests {
use super::*;
2024-04-17 23:34:27 +02:00
#[test]
fn move_semantics3() {
let vec0 = vec![22, 44, 66];
let vec1 = fill_vec(vec0);
2024-06-21 17:04:51 +02:00
assert_eq!(vec1, [22, 44, 66, 88]);
2024-04-17 23:34:27 +02:00
}
}