Skip to content

Commit 35919bd

Browse files
committed
use tracking issue instead of original issue
1 parent 6c0695b commit 35919bd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/librustc_lint/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
297297
},
298298
FutureIncompatibleInfo {
299299
id: LintId::of(ORDER_DEPENDENT_TRAIT_OBJECTS),
300-
reference: "issue #33140 <https://github.com/rust-lang/rust/issues/33140>",
300+
reference: "issue #56484 <https://github.com/rust-lang/rust/issues/56484>",
301301
edition: None,
302302
},
303303
FutureIncompatibleInfo {

src/test/ui/issues/issue-33140.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ note: lint level defined here
1313
LL | #![deny(order_dependent_trait_objects)]
1414
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1515
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
16-
= note: for more information, see issue #33140 <https://github.com/rust-lang/rust/issues/33140>
16+
= note: for more information, see issue #56484 <https://github.com/rust-lang/rust/issues/56484>
1717

1818
error: conflicting implementations of trait `Trait2` for type `(dyn std::marker::Send + std::marker::Sync + 'static)`: (E0119)
1919
--> $DIR/issue-33140.rs:35:1
@@ -25,7 +25,7 @@ LL | impl Trait2 for dyn Sync + Send + Sync {
2525
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `(dyn std::marker::Send + std::marker::Sync + 'static)`
2626
|
2727
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
28-
= note: for more information, see issue #33140 <https://github.com/rust-lang/rust/issues/33140>
28+
= note: for more information, see issue #56484 <https://github.com/rust-lang/rust/issues/56484>
2929

3030
error: duplicate definitions with name `abc` (E0592)
3131
--> $DIR/issue-33140.rs:43:5
@@ -42,7 +42,7 @@ LL | | }
4242
| |_____- other definition for `abc`
4343
|
4444
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
45-
= note: for more information, see issue #33140 <https://github.com/rust-lang/rust/issues/33140>
45+
= note: for more information, see issue #56484 <https://github.com/rust-lang/rust/issues/56484>
4646

4747
error: aborting due to 3 previous errors
4848

0 commit comments

Comments
 (0)