2014-02-05 22:33:10 +00: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 23:57:53 +00:00
|
|
|
struct S(String);
|
2013-06-20 19:11:47 +00:00
|
|
|
impl Drop for S {
|
2013-11-02 01:06:31 +00:00
|
|
|
fn drop(&mut self) { }
|
2013-06-20 19:11:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn move_in_match() {
|
2014-05-13 00:56:43 +00:00
|
|
|
match S("foo".to_strbuf()) {
|
2013-06-20 19:11:47 +00:00
|
|
|
S(_s) => {}
|
|
|
|
//~^ ERROR cannot move out of type `S`, which defines the `Drop` trait
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn move_in_let() {
|
2014-05-13 00:56:43 +00:00
|
|
|
let S(_s) = S("foo".to_strbuf());
|
2013-06-20 19:11:47 +00:00
|
|
|
//~^ ERROR cannot move out of type `S`, which defines the `Drop` trait
|
|
|
|
}
|
|
|
|
|
|
|
|
fn move_in_fn_arg(S(_s): S) {
|
|
|
|
//~^ ERROR cannot move out of type `S`, which defines the `Drop` trait
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|