leo/compiler/tests/integers/mod.rs

22 lines
292 B
Rust
Raw Normal View History

#[macro_use]
2020-07-16 07:31:23 +03:00
pub mod int_macro;
#[macro_use]
2020-07-16 06:42:57 +03:00
pub mod uint_macro;
2020-06-06 02:35:50 +03:00
2020-07-16 06:42:57 +03:00
pub mod integer_tester;
pub use self::integer_tester::*;
2020-06-06 02:35:50 +03:00
// must be below macro definitions!
2020-08-17 05:14:26 +03:00
pub mod u128;
2020-06-20 09:21:55 +03:00
pub mod u16;
pub mod u32;
2020-06-20 09:21:55 +03:00
pub mod u64;
pub mod u8;
2020-07-16 06:42:57 +03:00
2020-07-16 07:55:45 +03:00
pub mod i128;
pub mod i16;
pub mod i32;
pub mod i64;
2020-07-16 07:31:23 +03:00
pub mod i8;