proptest-arbitrary 0.2.2

The Arbitrary trait for proptest and implementations for the standard library.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Arbitrary implementations for `std::marker`.

use std::marker::PhantomData;
arbitrary!([T: ?Sized] PhantomData<T>; PhantomData);


#[cfg(test)]
mod test {
    no_panic_test!(phantom_data => PhantomData<u8>);
}