test: Remove alt-implicit-copy.rs test. Incompatible with current borrow check semantics. rs=bustage

This commit is contained in:
Patrick Walton 2012-12-07 21:59:38 -08:00
parent 6157f1dc06
commit 6338865741

View File

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