]> git.lizzy.rs Git - rust.git/blob - .github/ISSUE_TEMPLATE/ice.md
Rollup merge of #106575 - estebank:issue-64008, r=pnkfelix
[rust.git] / .github / ISSUE_TEMPLATE / ice.md
1 ---
2 name: Internal Compiler Error
3 about: Create a report for an internal compiler error in rustc.
4 labels: C-bug, I-ICE, T-compiler
5 ---
6 <!--
7 Thank you for finding an Internal Compiler Error! ðŸ§Š  If possible, try to provide
8 a minimal verifiable example. You can read "Rust Bug Minimization Patterns" for
9 how to create smaller examples.
10 http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/
11 -->
12
13 ### Code
14
15 ```Rust
16 <code>
17 ```
18
19
20 ### Meta
21 <!--
22 If you're using the stable version of the compiler, you should also check if the
23 bug also exists in the beta or nightly versions.
24 -->
25
26 `rustc --version --verbose`:
27 ```
28 <version>
29 ```
30
31 ### Error output
32
33 ```
34 <output>
35 ```
36
37 <!--
38 Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your
39 environment. E.g. `RUST_BACKTRACE=1 cargo build`.
40 -->
41 <details><summary><strong>Backtrace</strong></summary>
42 <p>
43
44 ```
45 <backtrace>
46 ```
47
48 </p>
49 </details>