2012-12-11 01:32:48 +00: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.
|
|
|
|
|
2012-08-08 00:11:43 +00:00
|
|
|
|
2012-09-07 21:50:47 +00:00
|
|
|
struct foo { a: int, b: int, c: int }
|
2012-08-08 00:11:43 +00:00
|
|
|
|
2012-08-27 23:26:35 +00:00
|
|
|
impl foo : cmp::Eq {
|
2012-11-15 02:59:30 +00:00
|
|
|
pure fn eq(&self, other: &foo) -> bool {
|
|
|
|
(*self).a == (*other).a &&
|
|
|
|
(*self).b == (*other).b &&
|
|
|
|
(*self).c == (*other).c
|
2012-08-27 23:26:35 +00:00
|
|
|
}
|
2012-11-15 02:59:30 +00:00
|
|
|
pure fn ne(&self, other: &foo) -> bool { !(*self).eq(other) }
|
2012-08-27 23:26:35 +00:00
|
|
|
}
|
|
|
|
|
2012-08-08 00:11:43 +00:00
|
|
|
const x : foo = foo { a:1, b:2, c: 3 };
|
|
|
|
const y : foo = foo { b:2, c:3, a: 1 };
|
|
|
|
const z : &foo = &foo { a: 10, b: 22, c: 12 };
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert x.b == 2;
|
|
|
|
assert x == y;
|
|
|
|
assert z.b == 22;
|
2012-08-23 00:24:52 +00:00
|
|
|
io::println(fmt!("0x%x", x.b as uint));
|
|
|
|
io::println(fmt!("0x%x", z.c as uint));
|
2012-08-08 00:11:43 +00:00
|
|
|
}
|