2020-01-21 06:13:26 -06:00
|
|
|
---
|
|
|
|
name: Internal Compiler Error
|
|
|
|
about: Create a report for an internal compiler error in rustc.
|
|
|
|
labels: C-bug, I-ICE, T-compiler
|
|
|
|
---
|
|
|
|
<!--
|
|
|
|
Thank you for finding an Internal Compiler Error! 🧊 If possible, try to provide
|
|
|
|
a minimal verifiable example. You can read "Rust Bug Minimization Patterns" for
|
|
|
|
how to create smaller examples.
|
|
|
|
|
|
|
|
http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
### Code
|
|
|
|
|
2020-03-30 14:33:42 -05:00
|
|
|
```Rust
|
2020-01-21 06:13:26 -06:00
|
|
|
<code>
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### Meta
|
|
|
|
<!--
|
|
|
|
If you're using the stable version of the compiler, you should also check if the
|
|
|
|
bug also exists in the beta or nightly versions.
|
|
|
|
-->
|
|
|
|
|
|
|
|
`rustc --version --verbose`:
|
|
|
|
```
|
|
|
|
<version>
|
|
|
|
```
|
|
|
|
|
|
|
|
### Error output
|
|
|
|
|
|
|
|
```
|
|
|
|
<output>
|
|
|
|
```
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your
|
|
|
|
environment. E.g. `RUST_BACKTRACE=1 cargo build`.
|
|
|
|
-->
|
|
|
|
<details><summary><strong>Backtrace</strong></summary>
|
|
|
|
<p>
|
|
|
|
|
|
|
|
```
|
|
|
|
<backtrace>
|
|
|
|
```
|
|
|
|
|
|
|
|
</p>
|
|
|
|
</details>
|
|
|
|
|