2013-05-22 05:54:35 -05:00
|
|
|
// Test that we do not permit moves from &[] matched by a vec pattern.
|
|
|
|
|
2015-01-28 07:34:18 -06:00
|
|
|
#[derive(Clone, Debug)]
|
2013-05-22 05:54:35 -05:00
|
|
|
struct Foo {
|
2014-05-22 18:57:53 -05:00
|
|
|
string: String
|
2013-05-22 05:54:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2016-10-29 16:54:04 -05:00
|
|
|
let x = vec![
|
2014-05-25 05:17:19 -05:00
|
|
|
Foo { string: "foo".to_string() },
|
|
|
|
Foo { string: "bar".to_string() },
|
|
|
|
Foo { string: "baz".to_string() }
|
2016-10-29 16:54:04 -05:00
|
|
|
];
|
2015-02-01 20:53:25 -06:00
|
|
|
let x: &[Foo] = &x;
|
2016-03-11 04:54:59 -06:00
|
|
|
match *x {
|
2019-07-07 18:47:46 -05:00
|
|
|
[_, ref tail @ ..] => {
|
2013-05-22 05:54:35 -05:00
|
|
|
match tail {
|
2019-04-22 02:40:08 -05:00
|
|
|
//~^ ERROR cannot move out of type `[Foo]`
|
2016-03-11 04:54:59 -06:00
|
|
|
&[Foo { string: a },
|
|
|
|
Foo { string: b }] => {
|
2013-05-22 05:54:35 -05:00
|
|
|
}
|
|
|
|
_ => {
|
2013-09-19 00:04:03 -05:00
|
|
|
unreachable!();
|
2013-05-22 05:54:35 -05:00
|
|
|
}
|
|
|
|
}
|
2013-07-02 14:47:32 -05:00
|
|
|
let z = tail[0].clone();
|
2014-12-20 02:09:35 -06:00
|
|
|
println!("{:?}", z);
|
2013-05-22 05:54:35 -05:00
|
|
|
}
|
|
|
|
_ => {
|
2013-09-19 00:04:03 -05:00
|
|
|
unreachable!();
|
2013-05-22 05:54:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|