Auto merge of #68929 - matprec:consistent-issue-references, r=Dylan-DPC

Make issue references consistent

Fixes https://github.com/rust-lang/rust/issues/62976

cc https://github.com/rust-lang/rust/pull/63008

r? @varkor because you reviewed the original pr
This commit is contained in:
bors 2020-02-11 02:00:27 +00:00
commit dc4242d905
266 changed files with 778 additions and 735 deletions

View file

@ -7,7 +7,7 @@ LL |
LL | B(usize)
| -------- tuple variant defined here
|
= note: for more information, see https://github.com/rust-lang/rust/issues/60553
= note: see issue #60553 <https://github.com/rust-lang/rust/issues/60553> for more information
= help: add `#![feature(arbitrary_enum_discriminant)]` to the crate attributes to enable
error: aborting due to previous error

View file

@ -7,7 +7,7 @@ LL | let x = Enum::Foo(a: 3, b: 4);
| tried to parse a type due to this type ascription
|
= note: `#![feature(type_ascription)]` lets you annotate an expression with a type: `<expr>: <type>`
= note: for more information, see https://github.com/rust-lang/rust/issues/23416
= note: see issue #23416 <https://github.com/rust-lang/rust/issues/23416> for more information
error[E0532]: expected tuple struct or tuple variant, found struct variant `Enum::Foo`
--> $DIR/recover-from-bad-variant.rs:10:9

View file

@ -17,7 +17,7 @@ LL | Other(usize),
LL | Other2(usize, usize),
| -------------------- tuple variant defined here
|
= note: for more information, see https://github.com/rust-lang/rust/issues/60553
= note: see issue #60553 <https://github.com/rust-lang/rust/issues/60553> for more information
= help: add `#![feature(arbitrary_enum_discriminant)]` to the crate attributes to enable
error: aborting due to previous error

View file

@ -5,5 +5,5 @@ LL | let _ = "Foo"_;
| ^
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #42326 <https://github.com/rust-lang/rust/issues/42326>
= note: see issue #42326 <https://github.com/rust-lang/rust/issues/42326> for more information