]>
Commit | Line | Data |
---|---|---|
223e47cc LB |
1 | // Copyright 2013 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 | ||
b7449926 | 11 | // run-pass |
c34b1796 AL |
12 | |
13 | enum E { V1(isize), V0 } | |
1a4d82fc | 14 | static C: [E; 3] = [E::V0, E::V1(0xDEADBEE), E::V0]; |
223e47cc LB |
15 | |
16 | pub fn main() { | |
17 | match C[1] { | |
62682a34 | 18 | E::V1(n) => assert_eq!(n, 0xDEADBEE), |
1a4d82fc | 19 | _ => panic!() |
223e47cc | 20 | } |
970d7e83 | 21 | match C[2] { |
1a4d82fc JJ |
22 | E::V0 => (), |
23 | _ => panic!() | |
223e47cc LB |
24 | } |
25 | } |