proptest-macro 0.5.0

Procedural macros for the proptest crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Make sure that code for choosing names for the generated struct is robust against mixtures of
// ident and non-ident parameter patterns

fn foo(
    a: i32,
    (b, c): (i32, i32),
    d: i32,
    Wrapper(e): Wrapper<i32>,
    [f, g]: [i32; 2],
    h: i32,
    Point { x, y }: Point,
) {}