blob: 14e5f26b3b1508d8fa9a95c4e871835da1f78b42 [file] [log] [blame] [edit]
fn main() {
let mut x = 3;
let y = &mut x;
let z = &mut x;
*y += 1;
}