]> git.lizzy.rs Git - rust.git/blob - .github/ISSUE_TEMPLATE/bug_report.md
Merge pull request #58 from rust-lang/issue-templates
[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 `rustc --version --verbose`:
24 ```
25 <version>
26 ```
27
28
29 `crate version in Cargo.toml`:
30 ```toml
31 [dependencies]
32 stdsimd = 
33 ```
34 <!-- If this specifies the repo at HEAD, please include the latest commit. -->
35
36
37 <!--
38 If a backtrace is available, please include a backtrace in the code block by
39 setting `RUST_BACKTRACE=1` in your environment. e.g.
40 `RUST_BACKTRACE=1 cargo build`.
41 -->
42 <details><summary>Backtrace</summary>
43 <p>
44
45 ```
46 <backtrace>
47 ```
48
49 </p>
50 </details>