]> git.lizzy.rs Git - enumset.git/blob - enumset/tests/compile-pass/no_imports.rs
Fully qualify all references to `EnumSet` in `enumset_derive`. Fixes #20.
[enumset.git] / enumset / tests / compile-pass / no_imports.rs
1 #![no_std]
2 #![allow(dead_code)]
3
4 extern crate std as __renamed_std; // so we don't have compile issues, but ::std still errors.
5
6 use enumset::EnumSetType;
7
8 #[derive(EnumSetType)]
9 pub enum EmptyEnum { }
10
11 #[derive(EnumSetType)]
12 pub enum Enum1 {
13     A,
14 }
15
16 #[derive(EnumSetType)]
17 pub enum SmallEnum {
18     A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z,
19 }
20 #[derive(EnumSetType)]
21 pub enum Enum128 {
22     A, B, C, D, E, F, G, H, _8, _9, _10, _11, _12, _13, _14, _15,
23     _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31,
24     _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47,
25     _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63,
26     _64, _65, _66, _67, _68, _69, _70, _71, _72, _73, _74, _75, _76, _77, _78, _79,
27     _80, _81, _82, _83, _84, _85, _86, _87, _88, _89, _90, _91, _92, _93, _94, _95,
28     _96, _97, _98, _99, _100, _101, _102, _103, _104, _105, _106, _107, _108, _109,
29     _110, _111, _112, _113, _114, _115, _116, _117, _118, _119, _120, _121, _122,
30     _123, _124,  _125, _126, _127,
31 }
32 #[derive(EnumSetType)]
33 pub enum SparseEnum {
34     A = 0xA, B = 20, C = 30, D = 40, E = 50, F = 60, G = 70, H = 80,
35 }
36
37 #[repr(u32)]
38 #[derive(EnumSetType)]
39 pub enum ReprEnum {
40     A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z,
41 }
42 #[repr(C)]
43 #[derive(EnumSetType)]
44 pub enum ReprEnum4 {
45     A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z,
46 }
47
48 pub fn main() {
49
50 }