about summary refs log tree commit diff
diff options
context:
space:
mode:
authorleonardo.yvens <leoyvens@gmail.com>2018-06-08 18:26:37 -0300
committerLeonardo Yvens Schwarzstein <leoyvens@gmail.com>2018-06-25 06:57:08 -0300
commitcc60e01581d3bb290a2299a6c2474aa29bf6a15f (patch)
treee068311e65b379c1d643e0d34ac717c5c81eff82
parenta602654a6e64610cef601e4524a66f42e5c38b98 (diff)
Fill in tracking issue for WHERE_CLAUSES_OBJECT_SAFETY future compat lint
-rw-r--r--src/librustc_lint/lib.rs2
-rw-r--r--src/test/ui/issue-50781.stderr2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_lint/lib.rs b/src/librustc_lint/lib.rs
index ef12df795a6..1d443258dc6 100644
--- a/src/librustc_lint/lib.rs
+++ b/src/librustc_lint/lib.rs
@@ -294,7 +294,7 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
         },
         FutureIncompatibleInfo {
             id: LintId::of(WHERE_CLAUSES_OBJECT_SAFETY),
-            reference: "issue TBD",
+            reference: "issue #51443 <https://github.com/rust-lang/rust/issues/51443>",
             edition: None,
         },
         FutureIncompatibleInfo {
diff --git a/src/test/ui/issue-50781.stderr b/src/test/ui/issue-50781.stderr
index ec24445e468..047b847e67e 100644
--- a/src/test/ui/issue-50781.stderr
+++ b/src/test/ui/issue-50781.stderr
@@ -10,7 +10,7 @@ note: lint level defined here
 LL | #![deny(where_clauses_object_safety)]
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
    = 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 TBD
+   = note: for more information, see issue #51443 <https://github.com/rust-lang/rust/issues/51443>
    = note: method `foo` references the `Self` type in where clauses
 
 error: aborting due to previous error