arbitrary-int 2.1.1

Modern and lightweight implementation of u2, u3, u4, ..., u127.
Documentation
#![allow(deprecated)]

// These are some typical patterns in users of arbitrary_int v1 we want to make sure don't break

#[test]
fn use_wildcard() {
    use arbitrary_int::*;

    // Use a constant from `Number` (which conflicts with `Integer`)
    const _: u5 = u5::MAX;
}

#[test]
fn use_number_directly() {
    use arbitrary_int::{u5, Number};

    // Use a constant from `Number` (which conflicts with `Integer`)
    const _: u5 = u5::MAX;
}