2013-01-31 00:08:39 +00: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.
|
|
|
|
|
2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2013-01-31 00:08:39 +00:00
|
|
|
enum E { V0, V16(u16) }
|
2014-11-06 08:05:53 +00:00
|
|
|
static C: (E, u16, u16) = (E::V0, 0x600D, 0xBAD);
|
2013-01-31 00:08:39 +00:00
|
|
|
|
2013-02-17 22:36:43 +00:00
|
|
|
pub fn main() {
|
2013-01-31 00:08:39 +00:00
|
|
|
let (_, n, _) = C;
|
2013-03-29 01:39:09 +00:00
|
|
|
assert!(n != 0xBAD);
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(n, 0x600D);
|
2013-01-31 00:08:39 +00:00
|
|
|
}
|