Skip to content

Commit db4f3f9

Browse files
committed
Filed a proper tracking issue.
1 parent 28b2bba commit db4f3f9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/librustc_lint/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,8 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
276276
},
277277
FutureIncompatibleInfo {
278278
id: LintId::of(UNSTABLE_NAME_COLLISION),
279-
reference: "pr #48552 <https://github.com/rust-lang/rust/pull/48552>",
279+
reference: "issue #48919 <https://github.com/rust-lang/rust/issues/48919>",
280280
edition: None,
281-
// FIXME: create a proper tracking issue.
282281
// Note: this item represents future incompatibility of all unstable functions in the
283282
// standard library, and thus should never be removed or changed to an error.
284283
},

src/test/ui/inference_unstable.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | assert_eq!('x'.ipu_flatten(), 1);
66
|
77
= note: #[warn(unstable_name_collision)] on by default
88
= warning: once this method is added to the standard library, there will be ambiguity here, which will cause a hard error!
9-
= note: for more information, see pr #48552 <https://github.com/rust-lang/rust/pull/48552>
9+
= note: for more information, see issue #48919 <https://github.com/rust-lang/rust/issues/48919>
1010
= help: call with fully qualified syntax `inference_unstable_itertools::IpuItertools::ipu_flatten(...)` to keep using the current method
1111
= note: add #![feature(ipu_flatten)] to the crate attributes to enable `inference_unstable_iterator::IpuIterator::ipu_flatten`
1212

0 commit comments

Comments
 (0)