rustlings/exercises/move_semantics/move_semantics5.rs
2021-06-20 14:48:55 +08:00

14 lines
302 B
Rust

// move_semantics5.rs
// Make me compile without adding, removing, or changing any of the
// lines in `main()`.
// Execute `rustlings hint move_semantics5` for hints :)
fn main() {
let mut x = 100;
let y = &mut x;
*y += 100;
let z = &mut *y;
*z += 1000;
assert_eq!(x, 1200);
}