Skip to content

Commit

Permalink
Ignore using destructuring assignment to wildcard pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 31, 2022
1 parent 44d9c53 commit 5f801ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/from_slice.rs
Expand Up @@ -4,5 +4,5 @@ use libfuzzer_sys::fuzz_target;
use serde_json::{from_slice, Value};

fuzz_target!(|data: &[u8]| {
let _ = from_slice::<Value>(data);
_ = from_slice::<Value>(data);
});

0 comments on commit 5f801ea

Please sign in to comment.