]> git.lizzy.rs Git - rust.git/blob - .github/ISSUE_TEMPLATE/bug_report.md
Rollup merge of #106828 - notriddle:notriddle/notable-trait-docblock, r=GuillaumeGomez
[rust.git] / .github / ISSUE_TEMPLATE / bug_report.md
1 ---
2 name: Bug Report
3 about: Create a bug report for Rust.
4 labels: C-bug
5 ---
6 <!--
7 Thank you for filing a bug report! 🐛 Please provide a short summary of the bug,
8 along with any information you feel relevant to replicating the bug.
9 -->
10
11 I tried this code:
12
13 ```rust
14 <code>
15 ```
16
17 I expected to see this happen: *explanation*
18
19 Instead, this happened: *explanation*
20
21 ### Meta
22 <!--
23 If you're using the stable version of the compiler, you should also check if the
24 bug also exists in the beta or nightly versions.
25 -->
26
27 `rustc --version --verbose`:
28 ```
29 <version>
30 ```
31
32 <!--
33 Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your
34 environment. E.g. `RUST_BACKTRACE=1 cargo build`.
35 -->
36 <details><summary>Backtrace</summary>
37 <p>
38
39 ```
40 <backtrace>
41 ```
42
43 </p>
44 </details>