| 7 | #include <test/fuzz/fuzz.h> |
| 8 | |
| 9 | FUZZ_TARGET(parse_script) |
| 10 | { |
| 11 | const std::string script_string(buffer.begin(), buffer.end()); |
| 12 | try { |
| 13 | (void)ParseScript(script_string); |
| 14 | } catch (const std::runtime_error&) { |
| 15 | } |
| 16 | } |
nothing calls this directly
no test coverage detected