mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-21 21:42:23 -05:00
28 lines
525 B
Rust
28 lines
525 B
Rust
fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
|
|
let mut vec = vec;
|
|
|
|
vec.push(88);
|
|
|
|
vec
|
|
}
|
|
|
|
fn main() {
|
|
// You can optionally experiment here.
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
// TODO: Make both vectors `vec0` and `vec1` accessible at the same time to
|
|
// fix the compiler error in the test.
|
|
#[test]
|
|
fn move_semantics2() {
|
|
let vec0 = vec![22, 44, 66];
|
|
|
|
let vec1 = fill_vec(vec0);
|
|
|
|
assert_eq!(vec0, [22, 44, 66]);
|
|
assert_eq!(vec1, [22, 44, 66, 88]);
|
|
}
|
|
}
|