]>
Commit | Line | Data |
---|---|---|
1a4d82fc JJ |
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 | 11 | |
54a0048b | 12 | #[repr(u8)] |
1a4d82fc JJ |
13 | enum Eu8 { |
14 | Au8 = 23, | |
15 | Bu8 = 223, | |
54a0048b | 16 | Cu8 = -23, //~ ERROR unary negation of unsigned integer |
1a4d82fc JJ |
17 | } |
18 | ||
54a0048b | 19 | #[repr(u16)] |
1a4d82fc JJ |
20 | enum Eu16 { |
21 | Au16 = 23, | |
22 | Bu16 = 55555, | |
54a0048b | 23 | Cu16 = -22333, //~ ERROR unary negation of unsigned integer |
1a4d82fc JJ |
24 | } |
25 | ||
54a0048b | 26 | #[repr(u32)] |
1a4d82fc JJ |
27 | enum Eu32 { |
28 | Au32 = 23, | |
29 | Bu32 = 3_000_000_000, | |
54a0048b | 30 | Cu32 = -2_000_000_000, //~ ERROR unary negation of unsigned integer |
1a4d82fc JJ |
31 | } |
32 | ||
54a0048b SL |
33 | #[repr(u64)] |
34 | enum Eu64 { | |
35 | Au32 = 23, | |
36 | Bu32 = 3_000_000_000, | |
37 | Cu32 = -2_000_000_000, //~ ERROR unary negation of unsigned integer | |
1a4d82fc JJ |
38 | } |
39 | ||
40 | // u64 currently allows negative numbers, and i64 allows numbers greater than `1<<63`. This is a | |
41 | // little counterintuitive, but since the discriminant can store all the bits, and extracting it | |
42 | // with a cast requires specifying the signedness, there is no loss of information in those cases. | |
43 | // This also applies to isize and usize on 64-bit targets. | |
44 | ||
45 | pub fn main() { } |