You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Create a bug report or feature request for a change to `rustc`'s error output
3
+
labels: ["A-diagnostics", "T-compiler"]
4
+
body:
5
+
- type: markdown
6
+
attributes:
7
+
value: |
8
+
Thank you for filing a diagnostics bug report! 🐛
9
+
10
+
Please provide a short summary of the bug, along with any information you feel relevant to replicating the bug.
11
+
12
+
If you cannot produce a minimal reproduction case (something that would work in isolation), please provide the steps or even link to a repository that causes the problematic output to occur.
13
+
- type: textarea
14
+
id: code
15
+
attributes:
16
+
label: Code
17
+
description: Please provide code that can reproduce the problem
18
+
placeholder: code
19
+
render: Rust
20
+
validations:
21
+
required: true
22
+
- type: textarea
23
+
id: output
24
+
attributes:
25
+
label: Current output
26
+
description: Please provide the `rustc` output you see
27
+
placeholder: rustc output
28
+
render: Shell
29
+
validations:
30
+
required: true
31
+
- type: textarea
32
+
id: desired-output
33
+
attributes:
34
+
label: Desired output
35
+
description: Please provide what the output *should* be
36
+
placeholder: proposed output
37
+
render: Shell
38
+
validations:
39
+
required: false
40
+
- type: textarea
41
+
id: rationale
42
+
attributes:
43
+
label: Rationale and extra context
44
+
description: If the problem is not self-explanatory, please provide a rationale for the change.
45
+
validations:
46
+
required: false
47
+
- type: textarea
48
+
id: other-output
49
+
attributes:
50
+
label: Other cases
51
+
description: If dramatically different output is caused by small changes, consider also adding them here.
52
+
render: Rust
53
+
validations:
54
+
required: false
55
+
- type: markdown
56
+
attributes:
57
+
value: |
58
+
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. The output might also be different depending on the Edition.
59
+
- type: textarea
60
+
id: extra
61
+
attributes:
62
+
label: Anything else?
63
+
description: If you have more details you want to give us to reproduce this issue, please add it here
description: Create a report for a documentation problem.
3
+
labels: ["A-docs"]
4
+
body:
5
+
- type: markdown
6
+
attributes:
7
+
value: |
8
+
Thank you for finding a documentation problem! 📚
9
+
10
+
Documentation problems might be grammatical issues, typos, or unclear wording, please provide details regarding the documentation including where it is present.
11
+
12
+
Note: If your issue is for one of these, please use their dedicated issue tracker instead:
name: Internal Compiler Error (for use by automated tooling)
2
+
description: For now, you'll want to use the other ICE template, as GitHub forms have strict limits on the size of fields so backtraces cannot be pasted directly.
3
+
labels: ["C-bug", "I-ICE", "T-compiler"]
4
+
title: "[ICE]: "
5
+
body:
6
+
- type: markdown
7
+
attributes:
8
+
value: |
9
+
Thank you for finding an Internal Compiler Error! 🧊
10
+
11
+
If possible, try to provide a minimal verifiable example.
12
+
13
+
You can read "[Rust Bug Minimization Patterns](http://blog.pnkfx.org/blog/2019/11/18/rust-bug-minimization-patterns/)" for how to create smaller examples.
14
+
15
+
- type: textarea
16
+
id: code
17
+
attributes:
18
+
label: Code
19
+
description: Please provide code or a link to a repository that can reproduce the problem
20
+
placeholder: code
21
+
render: Rust
22
+
validations:
23
+
required: false
24
+
25
+
- type: checkboxes
26
+
attributes:
27
+
label: Affected release channels
28
+
description: 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
29
+
options:
30
+
- label: Previous Stable
31
+
required: false
32
+
- label: Current Stable
33
+
required: false
34
+
- label: Current Beta
35
+
required: false
36
+
- label: Current Nightly
37
+
required: false
38
+
39
+
- type: textarea
40
+
id: version
41
+
attributes:
42
+
label: Rust Version
43
+
description: Please provide the `rustc` version, `rustc --version --verbose`
44
+
placeholder: |
45
+
$ rustc --version --verbose
46
+
rustc 1.XX.Y (SHORTHASH DATE)
47
+
binary: rustc
48
+
commit-hash: LONGHASHVALUE
49
+
commit-date: DATE
50
+
host: PLATFORMTRIPLE
51
+
release: 1.XX.Y
52
+
LLVM version: XX.YY.ZZ
53
+
render: Shell
54
+
validations:
55
+
required: true
56
+
57
+
- type: textarea
58
+
id: output
59
+
attributes:
60
+
label: Current error output
61
+
description: Please provide the `rustc` output you see
62
+
placeholder: output
63
+
render: Shell
64
+
validations:
65
+
required: false
66
+
67
+
- type: textarea
68
+
id: backtrace
69
+
attributes:
70
+
label: Backtrace
71
+
description: Include a backtrace in the code block by setting `RUST_BACKTRACE=full` in your environment, e.g. `RUST_BACKTRACE=full cargo build`
72
+
render: Shell
73
+
validations:
74
+
required: true
75
+
76
+
- type: textarea
77
+
id: extra
78
+
attributes:
79
+
label: Anything else?
80
+
description: If you have more details you want to give us to reproduce this issue, please add it here
0 commit comments