leo/compiler/tests/integers/mod.rs

38 lines
1.0 KiB
Rust
Raw Normal View History

2020-08-18 13:50:26 +03:00
// Copyright (C) 2019-2020 Aleo Systems Inc.
// This file is part of the Leo library.
// The Leo library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// The Leo library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.
#[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;