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.
|
|
|
|
|
2011-08-12 18:33:53 -05:00
|
|
|
// error-pattern: binary operation + cannot be applied to type
|
2011-07-27 07:19:39 -05:00
|
|
|
type clam = {x: @int, y: @int};
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
type fish = {a: @int};
|
2010-07-19 21:06:55 -05:00
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 07:19:39 -05:00
|
|
|
let a: clam = {x: @1, y: @2};
|
|
|
|
let b: clam = {x: @10, y: @20};
|
|
|
|
let z: int = a.x + b.y;
|
2011-12-22 19:53:53 -06:00
|
|
|
log(debug, z);
|
2011-06-15 13:19:50 -05:00
|
|
|
assert (z == 21);
|
2011-07-27 07:19:39 -05:00
|
|
|
let forty: fish = {a: @40};
|
|
|
|
let two: fish = {a: @2};
|
|
|
|
let answer: int = forty.a + two.a;
|
2011-12-22 19:53:53 -06:00
|
|
|
log(debug, answer);
|
2011-06-15 13:19:50 -05:00
|
|
|
assert (answer == 42);
|
2011-08-12 18:33:53 -05:00
|
|
|
}
|