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.
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
struct S {f:String}
|
2013-06-20 14:11:47 -05:00
|
|
|
impl Drop for S {
|
2014-01-09 04:06:55 -06:00
|
|
|
fn drop(&mut self) { println!("{}", self.f); }
|
2013-06-20 14:11:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn move_in_match() {
|
2014-06-13 21:09:12 -05:00
|
|
|
match (S {f:"foo".to_string()}) {
|
2013-06-20 14:11:47 -05:00
|
|
|
S {f:_s} => {}
|
|
|
|
//~^ ERROR cannot move out of type `S`, which defines the `Drop` trait
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn move_in_let() {
|
2014-05-25 05:17:19 -05:00
|
|
|
let S {f:_s} = S {f:"foo".to_string()};
|
2013-06-20 14:11:47 -05:00
|
|
|
//~^ ERROR cannot move out of type `S`, which defines the `Drop` trait
|
|
|
|
}
|
|
|
|
|
|
|
|
fn move_in_fn_arg(S {f:_s}: S) {
|
|
|
|
//~^ ERROR cannot move out of type `S`, which defines the `Drop` trait
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|