summary refs log tree commit diff
path: root/src/test/ui/rfc-2005-default-binding-mode/for.rs
blob: 3bf053eb874ce62496ffc1ac6426596b1468d5b9 (plain)
1
2
3
4
5
6
7
8
9
10
struct Foo {}

pub fn main() {
    let mut tups = vec![(Foo{}, Foo{})];
    // The below desugars to &(ref n, mut m).
    for (n, mut m) in &tups {
        //~^ ERROR cannot bind by-move and by-ref in the same pattern
        //~| ERROR cannot move out of a shared reference
    }
}