]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/small-enum-range-edge.rs
auto merge of #19628 : jbranchaud/rust/add-string-as-string-doctest, r=steveklabnik
[rust.git] / src / test / run-pass / small-enum-range-edge.rs
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
11 /*!
12  * Tests the range assertion wraparound case in trans::middle::adt::load_discr.
13  */
14
15 #[repr(u8)]
16 enum Eu { Lu = 0, Hu = 255 }
17
18 impl Copy for Eu {}
19
20 static CLu: Eu = Eu::Lu;
21 static CHu: Eu = Eu::Hu;
22
23 #[repr(i8)]
24 enum Es { Ls = -128, Hs = 127 }
25
26 impl Copy for Es {}
27
28 static CLs: Es = Es::Ls;
29 static CHs: Es = Es::Hs;
30
31 pub fn main() {
32     assert_eq!((Eu::Hu as u8) + 1, Eu::Lu as u8);
33     assert_eq!((Es::Hs as i8) + 1, Es::Ls as i8);
34     assert_eq!(CLu as u8, Eu::Lu as u8);
35     assert_eq!(CHu as u8, Eu::Hu as u8);
36     assert_eq!(CLs as i8, Es::Ls as i8);
37     assert_eq!(CHs as i8, Es::Hs as i8);
38 }