summary refs log tree commit diff
path: root/src/test/ui/pattern/bindings-after-at/nested-binding-modes-mut.rs
blob: 54f04117f7def61f7c772c2a04c8b3b0384e6cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(bindings_after_at)]

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
}