rust/src/test/compile-fail/autoderef-full-lval.rs

35 lines
1.1 KiB
Rust
Raw Normal View History

// 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.
#![feature(box_syntax)]
2013-03-01 21:57:05 -06:00
struct clam {
2014-12-05 20:12:25 -06:00
x: Box<isize>,
y: Box<isize>,
2013-03-01 21:57:05 -06:00
}
2013-03-01 21:57:05 -06:00
struct fish {
2014-12-05 20:12:25 -06:00
a: Box<isize>,
2013-03-01 21:57:05 -06:00
}
fn main() {
2014-10-02 00:10:09 -05:00
let a: clam = clam{x: box 1, y: box 2};
let b: clam = clam{x: box 10, y: box 20};
2014-12-05 20:12:25 -06:00
let z: isize = a.x + b.y; //~ ERROR binary operation `+` cannot be applied to type `Box<isize>`
2014-10-02 00:10:09 -05:00
println!("{}", z);
assert_eq!(z, 21);
2014-10-02 00:10:09 -05:00
let forty: fish = fish{a: box 40};
let two: fish = fish{a: box 2};
let answer: isize = forty.a + two.a;
2014-12-05 20:12:25 -06:00
//~^ ERROR binary operation `+` cannot be applied to type `Box<isize>`
2014-10-02 00:10:09 -05:00
println!("{}", answer);
assert_eq!(answer, 42);
}