about summary refs log tree commit diff
path: root/tests/ui/regions/regions-simple.rs
blob: fdf827956667ae5b04558d892900521b76805a7e (plain)
1
2
3
4
5
6
7
//@ run-pass
pub fn main() {
    let mut x: isize = 3;
    let y: &mut isize = &mut x;
    *y = 5;
    println!("{}", *y);
}