just/src/fuzzing.rs

6 lines
91 B
Rust
Raw Normal View History

use super::*;
2018-10-13 03:12:35 -07:00
2022-06-20 19:16:02 -07:00
pub fn compile(text: &str) {
let _ = compiler::Compiler::compile(text);
2018-10-13 03:12:35 -07:00
}