1---
2name: Fuzz Bug Report
3about: Report a fuzz bug in Wasmtime or Cranelift
4title: '<target> fuzzbug: '
5labels: bug, fuzz-bug
6assignees: ''
7---
8
9Thanks for filing an issue! Please fill out the TODOs below, and change `<target>` in the title to the corresponding fuzzing target.
10
11<!-- TODO: add link to an external bug report, if there is one, such as from OSS-Fuzz -->
12
13<details>
14<summary>Test case input</summary>
15
16<!-- Please base64-encode the input that libFuzzer generated, and paste it in the code-block below. This is required for us to reproduce the issue. -->
17
18```
19TODO_paste_the_base64_encoded_input_here
20```
21
22</details>
23
24<details>
25<summary>`cargo +nightly fuzz fmt` output</summary>
26
27<!-- If you can, please paste the output of `cargo +nightly fuzz fmt <target> <input>` in the code-block below. This will help reviewers more quickly triage this report. -->
28
29```
30TODO_paste_cargo_fuzz_fmt_output_here
31```
32
33</details>
34
35<details>
36<summary>Stack trace or other relevant details</summary>
37
38<!-- If you can, please paste anything that looks relevant from the failure message in the code-block below. This will help reviewers more quickly triage this report. -->
39
40```
41TODO_paste_the_report_here
42```
43
44</details>
45