summary refs log tree commit diff
path: root/src/test/ui/parser
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-02-11 02:00:27 +0000
committerbors <bors@rust-lang.org>2020-02-11 02:00:27 +0000
commitdc4242d9052a42cdf329c3a2430d02a3b3d415cb (patch)
tree71de7572d10aeed9168aad022ec0a54b1f56ffa7 /src/test/ui/parser
parent0f0cdf6acdb5a9b968728d961929ca59ff93cfa4 (diff)
parent7b555178aef4045685eb359204b565a4bb8d1a9f (diff)
downloadrust-dc4242d9052a42cdf329c3a2430d02a3b3d415cb.tar.gz
rust-dc4242d9052a42cdf329c3a2430d02a3b3d415cb.zip
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
Diffstat (limited to 'src/test/ui/parser')
-rw-r--r--src/test/ui/parser/issue-17383.stderr2
-rw-r--r--src/test/ui/parser/recover-from-bad-variant.stderr2
-rw-r--r--src/test/ui/parser/tag-variant-disr-non-nullary.stderr2
-rw-r--r--src/test/ui/parser/underscore-suffix-for-string.stderr2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/test/ui/parser/issue-17383.stderr b/src/test/ui/parser/issue-17383.stderr
index 6a25c743e77..265d6e14866 100644
--- a/src/test/ui/parser/issue-17383.stderr
+++ b/src/test/ui/parser/issue-17383.stderr
@@ -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
diff --git a/src/test/ui/parser/recover-from-bad-variant.stderr b/src/test/ui/parser/recover-from-bad-variant.stderr
index 375e2d54544..0272326c7bc 100644
--- a/src/test/ui/parser/recover-from-bad-variant.stderr
+++ b/src/test/ui/parser/recover-from-bad-variant.stderr
@@ -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
diff --git a/src/test/ui/parser/tag-variant-disr-non-nullary.stderr b/src/test/ui/parser/tag-variant-disr-non-nullary.stderr
index 70acc70e092..79f044a0675 100644
--- a/src/test/ui/parser/tag-variant-disr-non-nullary.stderr
+++ b/src/test/ui/parser/tag-variant-disr-non-nullary.stderr
@@ -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
diff --git a/src/test/ui/parser/underscore-suffix-for-string.stderr b/src/test/ui/parser/underscore-suffix-for-string.stderr
index 80d0d1bc83b..0a325ae9070 100644
--- a/src/test/ui/parser/underscore-suffix-for-string.stderr
+++ b/src/test/ui/parser/underscore-suffix-for-string.stderr
@@ -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