2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2015-01-07 15:35:56 -06:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2014-12-22 11:04:23 -06:00
|
|
|
use std::ops::Add;
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2014-12-30 22:32:49 -06:00
|
|
|
#[derive(Clone)]
|
2015-01-08 05:02:42 -06:00
|
|
|
struct foo(Box<usize>);
|
2012-08-28 17:54:45 -05:00
|
|
|
|
2014-12-31 14:45:13 -06:00
|
|
|
impl Add for foo {
|
|
|
|
type Output = foo;
|
|
|
|
|
2014-12-01 16:52:10 -06:00
|
|
|
fn add(self, f: foo) -> foo {
|
|
|
|
let foo(box i) = self;
|
|
|
|
let foo(box j) = f;
|
2014-05-05 20:56:44 -05:00
|
|
|
foo(box() (i + j))
|
2012-09-19 20:00:26 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
fn main() {
|
2014-05-05 20:56:44 -05:00
|
|
|
let x = foo(box 3);
|
2014-12-01 16:52:10 -06:00
|
|
|
let _y = {x} + x.clone(); // the `{x}` forces a move to occur
|
|
|
|
//~^ ERROR use of moved value: `x`
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|