// -*- rust -*-
type colour = tag(red(int,int), green());
fn f() {
auto x = red(1,2);
auto y = green();
// FIXME: needs structural equality test working.
// check (x != y);
}
fn main() {
f();
}
// -*- rust -*-
tag colour {
red(int,int);
green();
}
fn f() {
auto x = red(1,2);
auto y = green();
// FIXME: needs structural equality test working.
// check (x != y);
}
fn main() {
f();
}
// -*- rust -*-
tag colour {
red(int,int);
green;
}
fn f() {
auto x = red(1,2);
auto y = green;
// FIXME: needs structural equality test working.
// check (x != y);
}
fn main() {
f();
}
// -*- rust -*-
tag colour {
red(int,int);
green;
}
fn f() {
auto x = red(1,2);
auto y = green;
// FIXME: needs structural equality test working.
// assert (x != y);
}
fn main() {
f();
}
// -*- rust -*-
tag colour {
red(int,int);
green;
}
fn f() {
auto x = red(1,2);
auto y = green;
// FIXME: needs structural equality test working.
// check (x != y);
}
fn main() {
f();
}
// -*- rust -*-
tag colour {
red(int,int);
green;
}
fn f() {
auto x = red(1,2);
auto y = green;
// FIXME: needs structural equality test working.
// assert (x != y);
}
fn main() {
f();
}
// -*- rust -*-
tag colour { red(int, int); green; }
fn f() {
auto x = red(1, 2);
auto y = green;
// FIXME: needs structural equality test working.
// assert (x != y);
}
fn main() { f(); }
// -*- rust -*-
tag colour { red(int, int); green; }
fn f() {
let x = red(1, 2);
let y = green;
// FIXME: needs structural equality test working.
// assert (x != y);
}
fn main() { f(); }
// -*- rust -*-
tag colour { red(int, int); green; }
fn f() {
let x = red(1, 2);
let y = green;
// FIXME: needs structural equality test working.
// assert (x != y);
}
fn main() { f(); }
// -*- rust -*-
tag colour { red(int, int); green; }
fn f() {
let x = red(1, 2);
let y = green;
assert (x != y);
}
fn main() { f(); }
// -*- rust -*-
tag colour { red(int, int); green; }
fn f() { let x = red(1, 2); let y = green; assert (x != y); }
fn main() { f(); }
// -*- rust -*-
enum colour { red(int, int); green; }
fn f() { let x = red(1, 2); let y = green; assert (x != y); }
fn main() { f(); }
// -*- rust -*-
enum colour { red(int, int), green, }
fn f() { let x = red(1, 2); let y = green; assert (x != y); }
fn main() { f(); }
// -*- rust -*-
enum colour { red(int, int), green, }
impl colour : cmp::Eq {
pure fn eq(&&other: colour) -> bool {
match self {
red(a0, b0) => {
match other {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match other {
red(*) => false,
green => true
}
}
}
}
pure fn ne(&&other: colour) -> bool { !self.eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert (x != y); }
fn main() { f(); }
// -*- rust -*-
enum colour { red(int, int), green, }
impl colour : cmp::Eq {
pure fn eq(other: &colour) -> bool {
match self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
pure fn ne(other: &colour) -> bool { !self.eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert (x != y); }
fn main() { f(); }
// -*- rust -*-
enum colour { red(int, int), green, }
impl colour : cmp::Eq {
pure fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
pure fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert (x != y); }
fn main() { f(); }
// 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.
// -*- rust -*-
enum colour { red(int, int), green, }
impl colour : cmp::Eq {
pure fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
pure fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert (x != y); }
fn main() { f(); }
// 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.
// -*- rust -*-
enum colour { red(int, int), green, }
impl colour : cmp::Eq {
pure fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
pure fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert (x != y); }
pub fn main() { f(); }
// 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.
// -*- rust -*-
enum colour { red(int, int), green, }
impl cmp::Eq for colour {
pure fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
pure fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert (x != y); }
pub fn main() { f(); }
// 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.
// -*- rust -*-
enum colour { red(int, int), green, }
impl cmp::Eq for colour {
pure fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
pure fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; fail_unless!((x != y)); }
pub fn main() { f(); }
// 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.
// -*- rust -*-
enum colour { red(int, int), green, }
impl cmp::Eq for colour {
fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; fail_unless!((x != y)); }
pub fn main() { f(); }
// 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.
// -*- rust -*-
enum colour { red(int, int), green, }
impl cmp::Eq for colour {
fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert!((x != y)); }
pub fn main() { f(); }
// 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.
// -*- rust -*-
enum colour { red(int, int), green, }
impl Eq for colour {
fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert!((x != y)); }
pub fn main() { f(); }
// 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(int, int), green, }
impl Eq for colour {
fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(*) => false,
green => true
}
}
}
}
fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert!((x != y)); }
pub fn main() { f(); }
// 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(int, int), green, }
impl Eq for colour {
fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(..) => false,
green => true
}
}
}
}
fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert!((x != y)); }
pub fn main() { f(); }
// 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(int, int), green, }
impl PartialEq for colour {
fn eq(&self, other: &colour) -> bool {
match *self {
red(a0, b0) => {
match (*other) {
red(a1, b1) => a0 == a1 && b0 == b1,
green => false,
}
}
green => {
match (*other) {
red(..) => false,
green => true
}
}
}
}
fn ne(&self, other: &colour) -> bool { !(*self).eq(other) }
}
fn f() { let x = red(1, 2); let y = green; assert!((x != y)); }
pub fn main() { f(); }
// 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(int, int), 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(); }
// 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.
// pretty-expanded FIXME #23616
enum colour { red(int, int), 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(); }
// 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.
// pretty-expanded FIXME #23616
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(); }
// 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(); }