about summary refs log tree commit diff
path: root/src/test/ui/half-open-range-patterns
diff options
context:
space:
mode:
authorMatthias Prechtl <m.sleepypanda@gmail.com>2020-02-07 13:07:02 +0100
committerMatthias Prechtl <m.sleepypanda@gmail.com>2020-02-09 20:43:49 +0100
commit7b555178aef4045685eb359204b565a4bb8d1a9f (patch)
tree1e70243305ad8c731063a496d312b43e022a942e /src/test/ui/half-open-range-patterns
parentf35a7c38da65c9a006c0c7dbd73685b552b3cbf9 (diff)
downloadrust-7b555178aef4045685eb359204b565a4bb8d1a9f.tar.gz
rust-7b555178aef4045685eb359204b565a4bb8d1a9f.zip
--bless --compare-mode=nll
Diffstat (limited to 'src/test/ui/half-open-range-patterns')
-rw-r--r--src/test/ui/half-open-range-patterns/feature-gate-half-open-range-patterns.stderr12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/test/ui/half-open-range-patterns/feature-gate-half-open-range-patterns.stderr b/src/test/ui/half-open-range-patterns/feature-gate-half-open-range-patterns.stderr
index 99db339cf74..62d54463a43 100644
--- a/src/test/ui/half-open-range-patterns/feature-gate-half-open-range-patterns.stderr
+++ b/src/test/ui/half-open-range-patterns/feature-gate-half-open-range-patterns.stderr
@@ -26,7 +26,7 @@ error[E0658]: half-open range patterns are unstable
 LL |     if let ..=5 = 0 {}
    |            ^^^^
    |
-   = note: for more information, see https://github.com/rust-lang/rust/issues/67264
+   = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information
    = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
 
 error[E0658]: half-open range patterns are unstable
@@ -35,7 +35,7 @@ error[E0658]: half-open range patterns are unstable
 LL |     if let ...5 = 0 {}
    |            ^^^^
    |
-   = note: for more information, see https://github.com/rust-lang/rust/issues/67264
+   = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information
    = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
 
 error[E0658]: half-open range patterns are unstable
@@ -44,7 +44,7 @@ error[E0658]: half-open range patterns are unstable
 LL |     if let ..5 = 0 {}
    |            ^^^
    |
-   = note: for more information, see https://github.com/rust-lang/rust/issues/67264
+   = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information
    = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
 
 error[E0658]: half-open range patterns are unstable
@@ -53,7 +53,7 @@ error[E0658]: half-open range patterns are unstable
 LL |     if let 5.. = 0 {}
    |            ^^^
    |
-   = note: for more information, see https://github.com/rust-lang/rust/issues/67264
+   = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information
    = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
 
 error[E0658]: half-open range patterns are unstable
@@ -62,7 +62,7 @@ error[E0658]: half-open range patterns are unstable
 LL |     if let 5..= = 0 {}
    |            ^^^^
    |
-   = note: for more information, see https://github.com/rust-lang/rust/issues/67264
+   = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information
    = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
 
 error[E0658]: half-open range patterns are unstable
@@ -71,7 +71,7 @@ error[E0658]: half-open range patterns are unstable
 LL |     if let 5... = 0 {}
    |            ^^^^
    |
-   = note: for more information, see https://github.com/rust-lang/rust/issues/67264
+   = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information
    = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
 
 error: aborting due to 9 previous errors