daf5f5a4d1
Who doesn't like a massive renaming?
33 lines
779 B
Rust
33 lines
779 B
Rust
// Test that we do not permit moves from &[] matched by a vec pattern.
|
|
|
|
#[deriving(Clone)]
|
|
struct Foo {
|
|
string: ~str
|
|
}
|
|
|
|
pub fn main() {
|
|
let x = ~[
|
|
Foo { string: ~"foo" },
|
|
Foo { string: ~"bar" },
|
|
Foo { string: ~"baz" }
|
|
];
|
|
match x {
|
|
[_, ..tail] => {
|
|
match tail {
|
|
[Foo { string: a }, Foo { string: b }] => {
|
|
//~^ ERROR cannot move out of dereference of & pointer
|
|
//~^^ ERROR cannot move out of dereference of & pointer
|
|
}
|
|
_ => {
|
|
unreachable!();
|
|
}
|
|
}
|
|
let z = tail[0].clone();
|
|
info!("{:?}", z);
|
|
}
|
|
_ => {
|
|
unreachable!();
|
|
}
|
|
}
|
|
}
|