rust/src/test/compile-fail/borrowck-anon-fields-variant.rs

44 lines
677 B
Rust
Raw Normal View History

// Tests that we are able to distinguish when loans borrow different
// anonymous fields of an enum variant vs the same anonymous field.
enum Foo {
X, Y(uint, uint)
}
fn distinct_variant() {
let mut y = Y(1, 2);
let a = match y {
Y(ref mut a, _) => a,
2013-09-29 22:06:21 -05:00
X => fail2!()
};
let b = match y {
Y(_, ref mut b) => b,
2013-09-29 22:06:21 -05:00
X => fail2!()
};
*a += 1;
*b += 1;
}
fn same_variant() {
let mut y = Y(1, 2);
let a = match y {
Y(ref mut a, _) => a,
2013-09-29 22:06:21 -05:00
X => fail2!()
};
let b = match y {
Y(ref mut b, _) => b, //~ ERROR cannot borrow
2013-09-29 22:06:21 -05:00
X => fail2!()
};
*a += 1;
*b += 1;
}
fn main() {
}