2013-01-04 03:22:56 -06:00
|
|
|
// Copyright 2013 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 Foo {
|
|
|
|
Bar(u32),
|
|
|
|
Baz,
|
|
|
|
Quux(u64, u16)
|
|
|
|
}
|
|
|
|
|
|
|
|
const X: Foo = Baz;
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-01-04 03:22:56 -06:00
|
|
|
match X {
|
|
|
|
Baz => {}
|
2013-02-11 21:26:38 -06:00
|
|
|
_ => fail!()
|
2013-01-04 03:22:56 -06:00
|
|
|
}
|
|
|
|
match Y {
|
2013-03-06 21:09:17 -06:00
|
|
|
Bar(s) => fail_unless!(s == 2654435769),
|
2013-02-11 21:26:38 -06:00
|
|
|
_ => fail!()
|
2013-01-04 03:22:56 -06:00
|
|
|
}
|
|
|
|
match Z {
|
|
|
|
Quux(d,h) => {
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!((d == 0x123456789abcdef0));
|
|
|
|
fail_unless!((h == 0x1234));
|
2013-01-04 03:22:56 -06:00
|
|
|
}
|
2013-02-11 21:26:38 -06:00
|
|
|
_ => fail!()
|
2013-01-04 03:22:56 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Y: Foo = Bar(2654435769);
|
|
|
|
const Z: Foo = Quux(0x123456789abcdef0, 0x1234);
|