kill utils module

This commit is contained in:
Aleksey Kladov 2019-02-21 15:51:22 +03:00
parent 9be7426aae
commit f7f99af0a6
10 changed files with 101 additions and 114 deletions

View file

@ -4,6 +4,6 @@ extern crate ra_syntax;
fuzz_target!(|data: &[u8]| {
if let Ok(text) = std::str::from_utf8(data) {
ra_syntax::utils::check_fuzz_invariants(text)
ra_syntax::check_fuzz_invariants(text)
}
});