Skip to content

Commit 674b638

Browse files
committed
test: Fix alt-implicit-copy-unique. rs=me
1 parent e1685dd commit 674b638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/run-pass/alt-implicit-copy-unique.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
fn main() {
22
let x = ~{mut a: ~10, b: ~20};
33
match x {
4-
~{a: ref mut a, b: ref mut b} => {
4+
~{a: ref mut a, b: ref b} => {
55
assert **a == 10; (*x).a = ~30; assert **a == 30;
66
}
77
}

0 commit comments

Comments
 (0)