about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAriel Ben-Yehuda <ariel.byd@gmail.com>2018-12-04 01:00:21 +0200
committerAriel Ben-Yehuda <ariel.byd@gmail.com>2018-12-14 19:14:22 +0200
commitc2ba2a7b655f2a46ed044c1e86edc2a91df99bdd (patch)
treee21fd483fe2dd81959d533c0ad552cae4215a53a /src
parent6e4b2b3ae79770c7ccfcdbfc90dc34fe47ec5f09 (diff)
downloadrust-c2ba2a7b655f2a46ed044c1e86edc2a91df99bdd.tar.gz
rust-c2ba2a7b655f2a46ed044c1e86edc2a91df99bdd.zip
use tracking issue instead of original issue
Diffstat (limited to 'src')
-rw-r--r--src/librustc_lint/lib.rs2
-rw-r--r--src/test/ui/issues/issue-33140.stderr6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/librustc_lint/lib.rs b/src/librustc_lint/lib.rs
index e12f05275fb..7f4c496f5e6 100644
--- a/src/librustc_lint/lib.rs
+++ b/src/librustc_lint/lib.rs
@@ -295,7 +295,7 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
         },
         FutureIncompatibleInfo {
             id: LintId::of(ORDER_DEPENDENT_TRAIT_OBJECTS),
-            reference: "issue #33140 <https://github.com/rust-lang/rust/issues/33140>",
+            reference: "issue #56484 <https://github.com/rust-lang/rust/issues/56484>",
             edition: None,
         },
         FutureIncompatibleInfo {
diff --git a/src/test/ui/issues/issue-33140.stderr b/src/test/ui/issues/issue-33140.stderr
index 8220986f9e9..240137f863a 100644
--- a/src/test/ui/issues/issue-33140.stderr
+++ b/src/test/ui/issues/issue-33140.stderr
@@ -13,7 +13,7 @@ note: lint level defined here
 LL | #![deny(order_dependent_trait_objects)]
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    = 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 #33140 <https://github.com/rust-lang/rust/issues/33140>
+   = note: for more information, see issue #56484 <https://github.com/rust-lang/rust/issues/56484>
 
 error: conflicting implementations of trait `Trait2` for type `(dyn std::marker::Send + std::marker::Sync + 'static)`: (E0119)
   --> $DIR/issue-33140.rs:35:1
@@ -25,7 +25,7 @@ LL | impl Trait2 for dyn Sync + Send + Sync {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `(dyn std::marker::Send + std::marker::Sync + 'static)`
    |
    = 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 #33140 <https://github.com/rust-lang/rust/issues/33140>
+   = note: for more information, see issue #56484 <https://github.com/rust-lang/rust/issues/56484>
 
 error: duplicate definitions with name `abc` (E0592)
   --> $DIR/issue-33140.rs:43:5
@@ -42,7 +42,7 @@ LL | |     }
    | |_____- other definition for `abc`
    |
    = 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 #33140 <https://github.com/rust-lang/rust/issues/33140>
+   = note: for more information, see issue #56484 <https://github.com/rust-lang/rust/issues/56484>
 
 error: aborting due to 3 previous errors