diff options
author | Aleksey Kladov <[email protected]> | 2019-02-21 12:51:22 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-02-21 12:57:40 +0000 |
commit | f7f99af0a60ff80097377c1a041bcdeaf33c38de (patch) | |
tree | 52c792fef652a2c6a6bee850dd6bc3d180653997 /crates/ra_syntax/fuzz/fuzz_targets | |
parent | 9be7426aae359d49ef272db74528a706e7f738a0 (diff) |
kill utils module
Diffstat (limited to 'crates/ra_syntax/fuzz/fuzz_targets')
-rw-r--r-- | crates/ra_syntax/fuzz/fuzz_targets/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/fuzz/fuzz_targets/parser.rs b/crates/ra_syntax/fuzz/fuzz_targets/parser.rs index 396c0ecaf..4667d5579 100644 --- a/crates/ra_syntax/fuzz/fuzz_targets/parser.rs +++ b/crates/ra_syntax/fuzz/fuzz_targets/parser.rs | |||
@@ -4,6 +4,6 @@ extern crate ra_syntax; | |||
4 | 4 | ||
5 | fuzz_target!(|data: &[u8]| { | 5 | fuzz_target!(|data: &[u8]| { |
6 | if let Ok(text) = std::str::from_utf8(data) { | 6 | if let Ok(text) = std::str::from_utf8(data) { |
7 | ra_syntax::utils::check_fuzz_invariants(text) | 7 | ra_syntax::check_fuzz_invariants(text) |
8 | } | 8 | } |
9 | }); | 9 | }); |