summary refs log tree commit diff
path: root/src/test/ui/E0596.rs
blob: 3ea2d64a404c7b18637aed1052aafe4579253d38 (plain)
1
2
3
4
5
6
7
8
// revisions: ast mir
//[mir]compile-flags: -Z borrowck=mir

fn main() {
    let x = 1;
    let y = &mut x; //[ast]~ ERROR [E0596]
                    //[mir]~^ ERROR [E0596]
}