1 enum MyEnum {
2     MyEmptyVariant,
3     MyNewtypeVariant(i32),
4     MyTupleVariant(i32, i32),
5     MyStructVariant {
6         my_first_field: i32,
7         my_second_field: i32,
8     }
9 }
10 
test(me: MyEnum)11 fn test(me: MyEnum) {
12     match me {
13         MyEnum::MyEmptyVariant => {},
14         MyEnum::MyNewtypeVariant(ref val) => assert_eq!(val, &42),
15         MyEnum::MyTupleVariant(ref a, ref b) => {
16             assert_eq!(a, &43);
17             assert_eq!(b, &44);
18         },
19         MyEnum::MyStructVariant { ref my_first_field, ref my_second_field } => {
20             assert_eq!(my_first_field, &45);
21             assert_eq!(my_second_field, &46);
22         },
23     }
24 }
25 
discriminant_overflow()26 fn discriminant_overflow() {
27     // Tests for https://github.com/rust-lang/rust/issues/62138.
28     #[repr(u8)]
29     #[allow(dead_code)]
30     enum WithWraparoundInvalidValues {
31         X = 1,
32         Y = 254,
33     }
34 
35     #[allow(dead_code)]
36     enum Foo {
37         A,
38         B,
39         C(WithWraparoundInvalidValues),
40     }
41 
42     let x = Foo::B;
43     match x {
44         Foo::B => {},
45         _ => panic!(),
46     }
47 }
48 
more_discriminant_overflow()49 fn more_discriminant_overflow() {
50     pub enum Infallible {}
51 
52     // The check that the `bool` field of `V1` is encoding a "niche variant"
53     // (i.e. not `V1`, so `V3` or `V4`) used to be mathematically incorrect,
54     // causing valid `V1` values to be interpreted as other variants.
55     #[allow(dead_code)]
56     pub enum E1 {
57         V1 { f: bool },
58         V2 { f: Infallible },
59         V3,
60         V4,
61     }
62 
63     // Computing the discriminant used to be done using the niche type (here `u8`,
64     // from the `bool` field of `V1`), overflowing for variants with large enough
65     // indices (`V3` and `V4`), causing them to be interpreted as other variants.
66     #[allow(dead_code)]
67     pub enum E2<X> {
68         V1 { f: bool },
69 
70         /*_00*/ _01(X), _02(X), _03(X), _04(X), _05(X), _06(X), _07(X),
71         _08(X), _09(X), _0A(X), _0B(X), _0C(X), _0D(X), _0E(X), _0F(X),
72         _10(X), _11(X), _12(X), _13(X), _14(X), _15(X), _16(X), _17(X),
73         _18(X), _19(X), _1A(X), _1B(X), _1C(X), _1D(X), _1E(X), _1F(X),
74         _20(X), _21(X), _22(X), _23(X), _24(X), _25(X), _26(X), _27(X),
75         _28(X), _29(X), _2A(X), _2B(X), _2C(X), _2D(X), _2E(X), _2F(X),
76         _30(X), _31(X), _32(X), _33(X), _34(X), _35(X), _36(X), _37(X),
77         _38(X), _39(X), _3A(X), _3B(X), _3C(X), _3D(X), _3E(X), _3F(X),
78         _40(X), _41(X), _42(X), _43(X), _44(X), _45(X), _46(X), _47(X),
79         _48(X), _49(X), _4A(X), _4B(X), _4C(X), _4D(X), _4E(X), _4F(X),
80         _50(X), _51(X), _52(X), _53(X), _54(X), _55(X), _56(X), _57(X),
81         _58(X), _59(X), _5A(X), _5B(X), _5C(X), _5D(X), _5E(X), _5F(X),
82         _60(X), _61(X), _62(X), _63(X), _64(X), _65(X), _66(X), _67(X),
83         _68(X), _69(X), _6A(X), _6B(X), _6C(X), _6D(X), _6E(X), _6F(X),
84         _70(X), _71(X), _72(X), _73(X), _74(X), _75(X), _76(X), _77(X),
85         _78(X), _79(X), _7A(X), _7B(X), _7C(X), _7D(X), _7E(X), _7F(X),
86         _80(X), _81(X), _82(X), _83(X), _84(X), _85(X), _86(X), _87(X),
87         _88(X), _89(X), _8A(X), _8B(X), _8C(X), _8D(X), _8E(X), _8F(X),
88         _90(X), _91(X), _92(X), _93(X), _94(X), _95(X), _96(X), _97(X),
89         _98(X), _99(X), _9A(X), _9B(X), _9C(X), _9D(X), _9E(X), _9F(X),
90         _A0(X), _A1(X), _A2(X), _A3(X), _A4(X), _A5(X), _A6(X), _A7(X),
91         _A8(X), _A9(X), _AA(X), _AB(X), _AC(X), _AD(X), _AE(X), _AF(X),
92         _B0(X), _B1(X), _B2(X), _B3(X), _B4(X), _B5(X), _B6(X), _B7(X),
93         _B8(X), _B9(X), _BA(X), _BB(X), _BC(X), _BD(X), _BE(X), _BF(X),
94         _C0(X), _C1(X), _C2(X), _C3(X), _C4(X), _C5(X), _C6(X), _C7(X),
95         _C8(X), _C9(X), _CA(X), _CB(X), _CC(X), _CD(X), _CE(X), _CF(X),
96         _D0(X), _D1(X), _D2(X), _D3(X), _D4(X), _D5(X), _D6(X), _D7(X),
97         _D8(X), _D9(X), _DA(X), _DB(X), _DC(X), _DD(X), _DE(X), _DF(X),
98         _E0(X), _E1(X), _E2(X), _E3(X), _E4(X), _E5(X), _E6(X), _E7(X),
99         _E8(X), _E9(X), _EA(X), _EB(X), _EC(X), _ED(X), _EE(X), _EF(X),
100         _F0(X), _F1(X), _F2(X), _F3(X), _F4(X), _F5(X), _F6(X), _F7(X),
101         _F8(X), _F9(X), _FA(X), _FB(X), _FC(X), _FD(X), _FE(X), _FF(X),
102 
103         V3,
104         V4,
105     }
106 
107     if let E1::V2 { .. } = (E1::V1 { f: true }) {
108         unreachable!()
109     }
110     if let E1::V1 { .. } = (E1::V1 { f: true }) {
111     } else {
112         unreachable!()
113     }
114 
115     if let E2::V1 { .. } = E2::V3::<Infallible> {
116         unreachable!()
117     }
118     if let E2::V3 { .. } = E2::V3::<Infallible> {
119     } else {
120         unreachable!()
121     }
122 }
123 
main()124 fn main() {
125     test(MyEnum::MyEmptyVariant);
126     test(MyEnum::MyNewtypeVariant(42));
127     test(MyEnum::MyTupleVariant(43, 44));
128     test(MyEnum::MyStructVariant{
129         my_first_field: 45,
130         my_second_field: 46,
131     });
132 
133     discriminant_overflow();
134     more_discriminant_overflow();
135 }
136