Skip to content

Commit 5f801ea

Browse files
committed
Ignore using destructuring assignment to wildcard pattern
1 parent 44d9c53 commit 5f801ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzz/fuzz_targets/from_slice.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ use libfuzzer_sys::fuzz_target;
44
use serde_json::{from_slice, Value};
55

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

0 commit comments

Comments
 (0)