blob: e7d99534d6ab05c129f36ddc4d44cbb17dd454fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
fn main() {
let mut is_mut @ not_mut = 42;
&mut is_mut;
&mut not_mut;
//~^ ERROR cannot borrow
let not_mut @ mut is_mut = 42;
&mut is_mut;
&mut not_mut;
//~^ ERROR cannot borrow
}
|