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