blob: 98bfeb1bc054d7e4886d9948dadda637e178b82d [file] [log] [blame]
// run-pass
#![allow(unused_mut)]
pub fn main() {
let y: isize = 42;
let mut x: isize;
x = y;
assert_eq!(x, 42);
}