Create reproducer for cargo-bolero with Nix

This commit is contained in:
2024-06-10 20:53:02 +02:00
committed by Jan Tojnar
commit 6587758fe2
9 changed files with 446 additions and 0 deletions

View File

View File

View File

@@ -0,0 +1,11 @@
use bolero::check;
use my_fibonacci::fibonacci;
fn main() {
check!()
.with_type()
.cloned()
.for_each(|number: u64| {
fibonacci(number);
})
}