]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/.github/ISSUE_TEMPLATE/ice.yml
Auto merge of #99918 - WaffleLapkin:fnFnfun, r=estebank
[rust.git] / src / tools / clippy / .github / ISSUE_TEMPLATE / ice.yml
1 name: Internal Compiler Error
2 description: Create a report for an internal compiler error (ICE) in Clippy.
3 labels: ["C-bug", "I-ICE"]
4 body:
5   - type: markdown
6     attributes:
7       value: Thank you for finding an Internal Compiler Error! ðŸ§Š
8   - type: textarea
9     id: problem
10     attributes:
11       label: Summary
12       description: |
13         If possible, try to provide a minimal verifiable example. You can read ["Rust Bug Minimization Patterns"][mve] for how to create smaller examples. Otherwise, provide the crate where the ICE occurred.
14
15         [mve]: http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/
16     validations:
17       required: true
18   - type: textarea
19     id: version
20     attributes:
21       label: Version
22       description: "Rust version (`rustc -Vv`)"
23       placeholder: |
24         rustc 1.46.0-nightly (f455e46ea 2020-06-20)
25         binary: rustc
26         commit-hash: f455e46eae1a227d735091091144601b467e1565
27         commit-date: 2020-06-20
28         host: x86_64-unknown-linux-gnu
29         release: 1.46.0-nightly
30         LLVM version: 10.0
31       render: text
32   - type: textarea
33     id: error
34     attributes:
35       label: Error output
36       description: >
37         Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in
38         your environment. E.g. `RUST_BACKTRACE=1 cargo clippy`.
39       value: |
40         <details><summary>Backtrace</summary>
41           <p>
42
43           ```
44           <backtrace>
45           ```
46
47           </p>
48         </details>