about summary refs log tree commit diff
path: root/tests/ui/moves/move-scalar.rs
blob: e8cf5632b322a5a7634fbee693b971ec475ad1d4 (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass
#![allow(unused_mut)]

pub fn main() {

    let y: isize = 42;
    let mut x: isize;
    x = y;
    assert_eq!(x, 42);
}