batch-impl 0.7.2

A proc-macro library for batch generating trait impls with a powerful DSL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: batch-impl: `@5` is out of range — this impl has 2 fresh generics (numbered from 0 in document order; user-written params are addressed by name)
 --> tests/ui/error_aggregation_codegen.rs:6:1
  |
6 | #[batch_impl(()^1-()^1 where{@5: Clone}, ()^2 where{@3: Copy})]
  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  |
  = note: this error originates in the attribute macro `batch_impl` (in Nightly builds, run with -Z macro-backtrace for more info)

error: batch-impl: `@3` is out of range — this impl has 2 fresh generics (numbered from 0 in document order; user-written params are addressed by name)
 --> tests/ui/error_aggregation_codegen.rs:6:1
  |
6 | #[batch_impl(()^1-()^1 where{@5: Clone}, ()^2 where{@3: Copy})]
  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  |
  = note: this error originates in the attribute macro `batch_impl` (in Nightly builds, run with -Z macro-backtrace for more info)