Remove unneeded Clone impls from fuzz target

This commit is contained in:
David Tolnay 2022-05-15 13:42:24 -07:00
parent 6ba4e7ca6c
commit 5638af52e1
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
use arbitrary::Arbitrary;
use libfuzzer_sys::fuzz_target;
#[derive(Arbitrary, Debug, Clone)]
#[derive(Arbitrary, Debug)]
enum IntegerInput {
I8(i8),
U8(u8),
@ -19,7 +19,7 @@ enum IntegerInput {
U128(u128),
}
#[derive(Arbitrary, Debug, Clone)]
#[derive(Arbitrary, Debug)]
struct Inputs {
inputs: Vec<IntegerInput>,
}