blob: e3cfceb0d426f2b51008c00444d59154ba7ef341 [file] [log] [blame]
// 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.
enum colour { red(isize, isize), green, }
impl PartialEq for colour {
fn eq(&self, other: &colour) -> bool {
match *self {
colour::red(a0, b0) => {
match (*other) {
colour::red(a1, b1) => a0 == a1 && b0 == b1,
colour::green => false,
}
}
colour::green => {
match (*other) {
colour::red(..) => false,
colour::green => true
}
}
}
}
fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = colour::red(1, 2); let y = colour::green; assert!((x != y)); }
pub fn main() { f(); }