Exercise 26

This commit is contained in:
akshitgautam42 2023-11-12 14:57:47 +05:30
parent 3297025772
commit cfcbcac8b0

View File

@ -5,13 +5,13 @@
// Execute `rustlings hint move_semantics2` or use the `hint` watch subcommand
// for a hint.
// I AM NOT DONE
#[test]
fn main() {
let vec0 = vec![22, 44, 66];
let mut vec1 = fill_vec(vec0);
let vec1 = fill_vec(vec0.clone());
assert_eq!(vec0, vec![22, 44, 66]);
assert_eq!(vec1, vec![22, 44, 66, 88]);