]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/const-enum-vec-index.rs
Imported Upstream version 1.6.0+dfsg1
[rustc.git] / src / test / run-pass / const-enum-vec-index.rs
CommitLineData
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
c34b1796 11enum E { V1(isize), V0 }
1a4d82fc 12const C: &'static [E] = &[E::V0, E::V1(0xDEADBEE)];
223e47cc
LB
13static C0: E = C[0];
14static C1: E = C[1];
92a42be0
SL
15const D: &'static [E; 2] = &[E::V0, E::V1(0xDEAFBEE)];
16static D0: E = D[0];
17static D1: E = D[1];
223e47cc
LB
18
19pub fn main() {
970d7e83 20 match C0 {
1a4d82fc
JJ
21 E::V0 => (),
22 _ => panic!()
223e47cc
LB
23 }
24 match C1 {
62682a34 25 E::V1(n) => assert_eq!(n, 0xDEADBEE),
1a4d82fc
JJ
26 _ => panic!()
27 }
28
29 match D0 {
30 E::V0 => (),
31 _ => panic!()
32 }
33 match D1 {
92a42be0 34 E::V1(n) => assert_eq!(n, 0xDEAFBEE),
1a4d82fc 35 _ => panic!()
223e47cc
LB
36 }
37}