propfuzz 0.0.1

Combine property-based testing and fuzzing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) The propfuzz Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

//! A propfuzz with no arguments.

use propfuzz::propfuzz;

/// Failing propfuzz.
#[propfuzz]
fn no_args() {}

fn main() {}