1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
fn main() { let i = 2; { let mut x = 3; let y: &usize = &x; x = 5; } dbg!(y); }