2014-02-05 16:33:10 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-05-22 05:54:35 -05:00
|
|
|
// Test that we do not permit moves from &[] matched by a vec pattern.
|
|
|
|
|
2015-03-26 20:34:27 -05:00
|
|
|
#![feature(slice_patterns)]
|
|
|
|
|
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() {
|
2014-03-05 16:02:44 -06: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() }
|
2014-03-05 16:02:44 -06:00
|
|
|
);
|
2015-02-01 20:53:25 -06:00
|
|
|
let x: &[Foo] = &x;
|
2016-03-11 04:54:59 -06:00
|
|
|
match *x {
|
|
|
|
[_, ref tail..] => {
|
2013-05-22 05:54:35 -05:00
|
|
|
match tail {
|
2016-03-11 04:54:59 -06:00
|
|
|
&[Foo { string: a },
|
2016-05-12 18:39:09 -05:00
|
|
|
//~^ ERROR cannot move out of borrowed content
|
2016-05-16 17:40:50 -05:00
|
|
|
//~| cannot move out
|
|
|
|
//~| to prevent move
|
2016-03-11 04:54:59 -06:00
|
|
|
Foo { string: b }] => {
|
2016-05-12 18:39:09 -05:00
|
|
|
//~^ NOTE and here
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|