Merge pull request #25 from akshitgautam42/Ex-25

Exercise 25
This commit is contained in:
Akshit Gautam 2023-11-12 14:46:33 +05:30 committed by GitHub
commit 94bd377dd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);