bit_seq 0.2.1

A procedural macro for creating bit sequences.
Documentation
1
2
3
4
5
6
7
8
9
error: literal out of range for `i32`
 --> tests/build_fail/bseq_fail_hex_expr_i32_overflow.rs:4:19
  |
4 |     let _ = bseq!(0x0:32);
  |                   ^^^
  |
  = note: the literal `0x0` (decimal `4294967295`) does not fit into the type `i32` and will become `-1i32`
  = help: consider using the type `u32` instead
  = note: `#[deny(overflowing_literals)]` on by default