updates after merge

This commit is contained in:
palutz 2023-09-28 15:38:10 +01:00
parent 3e2f55b92f
commit ae24167795
2 changed files with 1 additions and 3 deletions

View File

@ -14,7 +14,7 @@ fn main() {
}
fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
let vec = vec;
let mut vec = vec;
vec.push(88);

View File

@ -6,8 +6,6 @@
// Execute `rustlings hint move_semantics5` or use the `hint` watch subcommand
// for a hint.
// I AM NOT DONE
#[test]
fn main() {
let mut x = 100;