Exercise 25

This commit is contained in:
akshitgautam42 2023-11-12 14:34:32 +05:30
parent 1b15a41671
commit 3297025772

View File

@ -3,7 +3,7 @@
// Execute `rustlings hint move_semantics1` or use the `hint` watch subcommand
// for a hint.
// I AM NOT DONE
#[test]
fn main() {
@ -15,7 +15,7 @@ fn main() {
}
fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
let vec = vec;
let mut vec = vec;
vec.push(88);