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.
|
|
|
|
|
2012-08-07 19:11:43 -05:00
|
|
|
|
2012-09-07 16:50:47 -05:00
|
|
|
struct foo { a: int, b: int, c: int }
|
2012-08-07 19:11:43 -05:00
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl cmp::Eq for foo {
|
2012-11-14 20:59:30 -06:00
|
|
|
pure fn eq(&self, other: &foo) -> bool {
|
|
|
|
(*self).a == (*other).a &&
|
|
|
|
(*self).b == (*other).b &&
|
|
|
|
(*self).c == (*other).c
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|
2012-11-14 20:59:30 -06:00
|
|
|
pure fn ne(&self, other: &foo) -> bool { !(*self).eq(other) }
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|
|
|
|
|
2012-08-07 19:11:43 -05:00
|
|
|
const x : foo = foo { a:1, b:2, c: 3 };
|
|
|
|
const y : foo = foo { b:2, c:3, a: 1 };
|
2013-02-26 13:34:00 -06:00
|
|
|
const z : &'static foo = &foo { a: 10, b: 22, c: 12 };
|
2012-08-07 19:11:43 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(x.b == 2);
|
|
|
|
fail_unless!(x == y);
|
|
|
|
fail_unless!(z.b == 22);
|
2012-08-22 19:24:52 -05:00
|
|
|
io::println(fmt!("0x%x", x.b as uint));
|
|
|
|
io::println(fmt!("0x%x", z.c as uint));
|
2012-08-07 19:11:43 -05:00
|
|
|
}
|