File tree 4 files changed +13
-5
lines changed
4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -4,5 +4,12 @@ Thank you for your interest in contributing to Rust!
4
4
5
5
To get started, read the [ Getting Started] guide in the [ rustc-dev-guide] .
6
6
7
+ ## Bug reports
8
+
9
+ Did a compiler error message tell you to come here? If you want to create an ICE report,
10
+ refer to [ this section] [ contributing-bug-reports ] and [ open an issue] [ issue template ] .
11
+
7
12
[ Getting Started ] : https://rustc-dev-guide.rust-lang.org/getting-started.html
8
13
[ rustc-dev-guide ] : https://rustc-dev-guide.rust-lang.org/
14
+ [ contributing-bug-reports ] : https://rustc-dev-guide.rust-lang.org/contributing.html#bug-reports
15
+ [ issue template ] : https://github.com/rust-lang/rust/issues/new/choose
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ pub const EXIT_SUCCESS: i32 = 0;
65
65
/// Exit status code used for compilation failures and invalid flags.
66
66
pub const EXIT_FAILURE : i32 = 1 ;
67
67
68
- const BUG_REPORT_URL : & str = "https://github.com/rust-lang/rust/blob/master/CONTRIBUTING. \
69
- md# bug-reports ";
68
+ const BUG_REPORT_URL : & str = "https://github.com/rust-lang/rust/issues/new \
69
+ ?labels=C- bug%2C+I-ICE%2C+T-compiler&template=ice.md ";
70
70
71
71
const ICE_REPORT_COMPILER_FLAGS : & [ & str ] = & [ "Z" , "C" , "crate-type" ] ;
72
72
Original file line number Diff line number Diff line change 85
85
//! # Contributing changes to the documentation
86
86
//!
87
87
//! Check out the rust contribution guidelines [here](
88
- //! https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md).
89
- //! The source for this documentation can be found on [Github](https://github.com/rust-lang).
88
+ //! https://rustc-dev-guide.rust-lang.org/getting-started.html).
89
+ //! The source for this documentation can be found on
90
+ //! [GitHub](https://github.com/rust-lang/rust).
90
91
//! To contribute changes, make sure you read the guidelines first, then submit
91
92
//! pull-requests for your suggested changes.
92
93
//!
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ error: internal compiler error: unexpected panic
5
5
6
6
note: the compiler unexpectedly panicked. this is a bug.
7
7
8
- note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md# bug-reports
8
+ note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C- bug%2C+I-ICE%2C+T-compiler&template=ice.md
9
9
10
10
note: rustc VERSION running on TARGET
11
11
You can’t perform that action at this time.
0 commit comments