]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/enum-discrim-too-small.rs
Auto merge of #23931 - steveklabnik:doc_std_fs, r=alexcrichton
[rust.git] / src / test / compile-fail / enum-discrim-too-small.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 #![feature(negate_unsigned)]
12
13 #[repr(u8)] //~ NOTE discriminant type specified here
14 enum Eu8 {
15     Au8 = 23,
16     Bu8 = 223,
17     Cu8 = -23, //~ ERROR discriminant value outside specified type
18 }
19
20 #[repr(i8)] //~ NOTE discriminant type specified here
21 enum Ei8 {
22     Ai8 = 23,
23     Bi8 = -23,
24     Ci8 = 223, //~ ERROR discriminant value outside specified type
25 }
26
27 #[repr(u16)] //~ NOTE discriminant type specified here
28 enum Eu16 {
29     Au16 = 23,
30     Bu16 = 55555,
31     Cu16 = -22333, //~ ERROR discriminant value outside specified type
32 }
33
34 #[repr(i16)] //~ NOTE discriminant type specified here
35 enum Ei16 {
36     Ai16 = 23,
37     Bi16 = -22333,
38     Ci16 = 55555, //~ ERROR discriminant value outside specified type
39 }
40
41 #[repr(u32)] //~ NOTE discriminant type specified here
42 enum Eu32 {
43     Au32 = 23,
44     Bu32 = 3_000_000_000,
45     Cu32 = -2_000_000_000, //~ ERROR discriminant value outside specified type
46 }
47
48 #[repr(i32)] //~ NOTE discriminant type specified here
49 enum Ei32 {
50     Ai32 = 23,
51     Bi32 = -2_000_000_000,
52     Ci32 = 3_000_000_000, //~ ERROR discriminant value outside specified type
53 }
54
55 // u64 currently allows negative numbers, and i64 allows numbers greater than `1<<63`.  This is a
56 // little counterintuitive, but since the discriminant can store all the bits, and extracting it
57 // with a cast requires specifying the signedness, there is no loss of information in those cases.
58 // This also applies to isize and usize on 64-bit targets.
59
60 pub fn main() { }