diff options
| author | kennytm <kennytm@gmail.com> | 2018-03-11 01:58:57 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-03-24 07:02:35 +0800 |
| commit | db4f3f93bc3561fd0b125e45f693f16c9e1aa9bd (patch) | |
| tree | 94c67084ebcda57fb6bda371e3178dfe2e08d661 | |
| parent | 28b2bba58502d87a9a7d62649dccc946c1fc7e45 (diff) | |
| download | rust-db4f3f93bc3561fd0b125e45f693f16c9e1aa9bd.tar.gz rust-db4f3f93bc3561fd0b125e45f693f16c9e1aa9bd.zip | |
Filed a proper tracking issue.
| -rw-r--r-- | src/librustc_lint/lib.rs | 3 | ||||
| -rw-r--r-- | src/test/ui/inference_unstable.stderr | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/librustc_lint/lib.rs b/src/librustc_lint/lib.rs index fad21ecef4d..4639f7b2d28 100644 --- a/src/librustc_lint/lib.rs +++ b/src/librustc_lint/lib.rs @@ -276,9 +276,8 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) { }, FutureIncompatibleInfo { id: LintId::of(UNSTABLE_NAME_COLLISION), - reference: "pr #48552 <https://github.com/rust-lang/rust/pull/48552>", + reference: "issue #48919 <https://github.com/rust-lang/rust/issues/48919>", edition: None, - // FIXME: create a proper tracking issue. // Note: this item represents future incompatibility of all unstable functions in the // standard library, and thus should never be removed or changed to an error. }, diff --git a/src/test/ui/inference_unstable.stderr b/src/test/ui/inference_unstable.stderr index 21b1bdbf179..9c614d659d3 100644 --- a/src/test/ui/inference_unstable.stderr +++ b/src/test/ui/inference_unstable.stderr @@ -6,7 +6,7 @@ LL | assert_eq!('x'.ipu_flatten(), 1); | = note: #[warn(unstable_name_collision)] on by default = warning: once this method is added to the standard library, there will be ambiguity here, which will cause a hard error! - = note: for more information, see pr #48552 <https://github.com/rust-lang/rust/pull/48552> + = note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919> = help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_flatten(...)` to keep using the current method = note: add #![feature(ipu_flatten)] to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_flatten` |
