]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/.github/ISSUE_TEMPLATE/ice.md
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / .github / ISSUE_TEMPLATE / ice.md
CommitLineData
f20569fa
XL
1---
2name: Internal Compiler Error
3about: Create a report for an internal compiler error in Clippy.
4labels: C-bug, I-ICE
5---
6<!--
7Thank you for finding an Internal Compiler Error! 🧊 If possible, try to provide
8a minimal verifiable example. You can read "Rust Bug Minimization Patterns" for
9how to create smaller examples.
10
11http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/
12
13-->
14
15### Code
16
17```rust
18<code>
19```
20
21### Meta
22
23- `cargo clippy -V`: e.g. clippy 0.0.212 (f455e46 2020-06-20)
24- `rustc -Vv`:
25 ```
26 rustc 1.46.0-nightly (f455e46ea 2020-06-20)
27 binary: rustc
28 commit-hash: f455e46eae1a227d735091091144601b467e1565
29 commit-date: 2020-06-20
30 host: x86_64-unknown-linux-gnu
31 release: 1.46.0-nightly
32 LLVM version: 10.0
33 ```
34
35### Error output
36
37```
38<output>
39```
40
41<!--
42Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your
43environment. E.g. `RUST_BACKTRACE=1 cargo clippy`.
44-->
45<details><summary>Backtrace</summary>
46 <p>
47
48 ```
49 <backtrace>
50 ```
51
52 </p>
53</details>