blob: 7f8671a5a65890262b33c090ea3f8808f931955d [file] [log] [blame] [edit]
//@ run-pass
pub fn main() {
let x = 10;
let y = x;
assert_eq!(y, 10);
}