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.
|
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::cmp;
|
2012-08-07 19:11:43 -05:00
|
|
|
|
2014-02-28 03:23:06 -06:00
|
|
|
#[deriving(Show)]
|
2012-09-07 16:50:47 -05:00
|
|
|
struct foo { a: int, b: int, c: int }
|
2012-08-07 19:11:43 -05:00
|
|
|
|
2014-05-29 19:45:07 -05:00
|
|
|
impl cmp::PartialEq for foo {
|
2013-03-22 13:23:21 -05:00
|
|
|
fn eq(&self, other: &foo) -> bool {
|
2012-11-14 20:59:30 -06:00
|
|
|
(*self).a == (*other).a &&
|
|
|
|
(*self).b == (*other).b &&
|
|
|
|
(*self).c == (*other).c
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|
2013-03-22 13:23:21 -05:00
|
|
|
fn ne(&self, other: &foo) -> bool { !(*self).eq(other) }
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|
|
|
|
|
2013-03-22 16:00:15 -05:00
|
|
|
static x : foo = foo { a:1, b:2, c: 3 };
|
|
|
|
static y : foo = foo { b:2, c:3, a: 1 };
|
|
|
|
static z : &'static foo = &foo { a: 10, b: 22, c: 12 };
|
2013-07-26 22:49:42 -05:00
|
|
|
static w : foo = foo { a:5, ..x };
|
2012-08-07 19:11:43 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(x.b, 2);
|
|
|
|
assert_eq!(x, y);
|
|
|
|
assert_eq!(z.b, 22);
|
2013-07-26 22:49:42 -05:00
|
|
|
assert_eq!(w.a, 5);
|
|
|
|
assert_eq!(w.c, 3);
|
2013-09-25 00:16:43 -05:00
|
|
|
println!("{:#x}", x.b);
|
|
|
|
println!("{:#x}", z.c);
|
2012-08-07 19:11:43 -05:00
|
|
|
}
|