mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 14:02:22 -05:00
24 lines
410 B
Rust
24 lines
410 B
Rust
// TODO: Fix the compiler error in this function.
|
|
fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
|
|
let vec = vec;
|
|
|
|
vec.push(88);
|
|
|
|
vec
|
|
}
|
|
|
|
fn main() {
|
|
// You can optionally experiment here.
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn move_semantics1() {
|
|
let vec0 = vec![22, 44, 66];
|
|
let vec1 = fill_vec(vec0);
|
|
assert_eq!(vec1, vec![22, 44, 66, 88]);
|
|
}
|
|
}
|