macroweave 0.1.0

Procedural macros for small compile-time repetitions over Rust token sequences.
Documentation
1
2
3
4
5
6
7
8
9
10
11
error: the binding variable `T` is declared more than once
 --> tests/ui/err/duplicate_binding.rs:4:17
  |
4 |     repeat!((T, T) in [(u8, u16)] {
  |                 ^

error: the first `T` binding is here
 --> tests/ui/err/duplicate_binding.rs:4:14
  |
4 |     repeat!((T, T) in [(u8, u16)] {
  |              ^