]> git.lizzy.rs Git - rust.git/blob - .github/ISSUE_TEMPLATE/ice.md
Unify Opaque/Projection handling in region outlives code
[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
11 http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/
12
13 -->
14
15 ### Code
16
17 ```Rust
18 <code>
19 ```
20
21
22 ### Meta
23 <!--
24 If you're using the stable version of the compiler, you should also check if the
25 bug also exists in the beta or nightly versions.
26 -->
27
28 `rustc --version --verbose`:
29 ```
30 <version>
31 ```
32
33 ### Error output
34
35 ```
36 <output>
37 ```
38
39 <!--
40 Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your
41 environment. E.g. `RUST_BACKTRACE=1 cargo build`.
42 -->
43 <details><summary><strong>Backtrace</strong></summary>
44 <p>
45
46 ```
47 <backtrace>
48 ```
49
50 </p>
51 </details>
52