Skip to content

Commit c2ba2a7

Browse files
committed
use tracking issue instead of original issue
1 parent 6e4b2b3 commit c2ba2a7

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
@@ -295,7 +295,7 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
295295
},
296296
FutureIncompatibleInfo {
297297
id: LintId::of(ORDER_DEPENDENT_TRAIT_OBJECTS),
298-
reference: "issue #33140 <https://github.com/rust-lang/rust/issues/33140>",
298+
reference: "issue #56484 <https://github.com/rust-lang/rust/issues/56484>",
299299
edition: None,
300300
},
301301
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)