test: Fix alt-implicit-copy-unique. rs=me

This commit is contained in:
Patrick Walton 2012-12-05 17:38:21 -08:00
parent e1685dd990
commit 674b638385

View File

@ -1,7 +1,7 @@
fn main() {
let x = ~{mut a: ~10, b: ~20};
match x {
~{a: ref mut a, b: ref mut b} => {
~{a: ref mut a, b: ref b} => {
assert **a == 10; (*x).a = ~30; assert **a == 30;
}
}