Skip to content

Commit b35af0d

Browse files
authored
Rollup merge of #90771 - asterycs:fix/trait-object-error-code, r=michaelwoerister
Fix trait object error code closes #90768 I `grep`:d and changed the occurrences that seemed relevant. Please let me know what you think and if anything is missing!
2 parents d212d90 + fc9624c commit b35af0d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compiler/rustc_typeck/src/check/fn_ctxt/_impl.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
952952
let mut err = rustc_errors::struct_span_err!(
953953
self.sess(),
954954
self_ty.span,
955-
E0783,
955+
E0782,
956956
"{}",
957957
msg,
958958
);
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
error[E0783]: trait objects without an explicit `dyn` are deprecated
1+
error[E0782]: trait objects without an explicit `dyn` are deprecated
22
--> $DIR/dyn-trait-sugg-2021.rs:10:5
33
|
44
LL | Foo::hi(123);
55
| ^^^ help: use `dyn`: `<dyn Foo>`
66

77
error: aborting due to previous error
88

9-
For more information about this error, try `rustc --explain E0783`.
9+
For more information about this error, try `rustc --explain E0782`.

0 commit comments

Comments
 (0)