Update borrow_hard back

This commit is contained in:
Sofia 2025-07-21 10:43:55 +03:00
parent 37386db437
commit d2ee61e888

View File

@ -5,9 +5,9 @@ fn changer(param: &mut u32) {
}
fn main() -> u32 {
let value = 6;
let mut value = 6;
let mut a = &value;
changer(&mut value);
return value;
}