]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/typeclasses-eq-example.rs
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / test / run-pass / typeclasses-eq-example.rs
CommitLineData
223e47cc
LB
1// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
0bf4aa26
XL
11#![allow(non_camel_case_types)]
12#![allow(non_snake_case)]
13#![allow(dead_code)]
1a4d82fc
JJ
14#![feature(box_syntax)]
15
223e47cc 16// Example from lkuper's intern talk, August 2012.
1a4d82fc
JJ
17use Color::{cyan, magenta, yellow, black};
18use ColorTree::{leaf, branch};
223e47cc
LB
19
20trait Equal {
1a4d82fc 21 fn isEq(&self, a: &Self) -> bool;
223e47cc
LB
22}
23
85aaf69f 24#[derive(Clone, Copy)]
223e47cc
LB
25enum Color { cyan, magenta, yellow, black }
26
27impl Equal for Color {
1a4d82fc
JJ
28 fn isEq(&self, a: &Color) -> bool {
29 match (*self, *a) {
223e47cc
LB
30 (cyan, cyan) => { true }
31 (magenta, magenta) => { true }
32 (yellow, yellow) => { true }
33 (black, black) => { true }
34 _ => { false }
35 }
36 }
37}
38
1a4d82fc 39#[derive(Clone)]
223e47cc
LB
40enum ColorTree {
41 leaf(Color),
1a4d82fc 42 branch(Box<ColorTree>, Box<ColorTree>)
223e47cc
LB
43}
44
45impl Equal for ColorTree {
1a4d82fc
JJ
46 fn isEq(&self, a: &ColorTree) -> bool {
47 match (self, a) {
48 (&leaf(ref x), &leaf(ref y)) => { x.isEq(&(*y).clone()) }
49 (&branch(ref l1, ref r1), &branch(ref l2, ref r2)) => {
50 (*l1).isEq(&(**l2).clone()) && (*r1).isEq(&(**r2).clone())
223e47cc
LB
51 }
52 _ => { false }
53 }
54 }
55}
56
57pub fn main() {
1a4d82fc
JJ
58 assert!(cyan.isEq(&cyan));
59 assert!(magenta.isEq(&magenta));
60 assert!(!cyan.isEq(&yellow));
61 assert!(!magenta.isEq(&cyan));
223e47cc 62
1a4d82fc
JJ
63 assert!(leaf(cyan).isEq(&leaf(cyan)));
64 assert!(!leaf(cyan).isEq(&leaf(yellow)));
223e47cc 65
1a4d82fc
JJ
66 assert!(branch(box leaf(magenta), box leaf(cyan))
67 .isEq(&branch(box leaf(magenta), box leaf(cyan))));
223e47cc 68
1a4d82fc
JJ
69 assert!(!branch(box leaf(magenta), box leaf(cyan))
70 .isEq(&branch(box leaf(magenta), box leaf(magenta))));
223e47cc 71
1a4d82fc 72 println!("Assertions all succeeded!");
223e47cc 73}