3a287b864a
- Upgrade to rust 2018 - Update dependencies - Use BTree{Map,Set} instead of Map and Set
8 lines
141 B
Rust
8 lines
141 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
std::str::from_utf8(data).map(just::fuzzing::compile).ok();
|
|
});
|