about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJimmy Envall <jimmyenvall@gmail.com>2021-11-10 18:49:30 +0100
committerJimmy Envall <jimmyenvall@gmail.com>2021-11-10 18:49:30 +0100
commitfc9624c6738c57f32e6811ed93b3085415e61ccd (patch)
treed30211c771a7879a11ba40fcea55a73ee5ebcc81
parent68ca579406f2fa9ec62710e4a4d5d3e07a168d3c (diff)
downloadrust-fc9624c6738c57f32e6811ed93b3085415e61ccd.tar.gz
rust-fc9624c6738c57f32e6811ed93b3085415e61ccd.zip
Fix trait object error code
-rw-r--r--compiler/rustc_typeck/src/check/fn_ctxt/_impl.rs2
-rw-r--r--src/test/ui/editions/dyn-trait-sugg-2021.stderr4
2 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_typeck/src/check/fn_ctxt/_impl.rs b/compiler/rustc_typeck/src/check/fn_ctxt/_impl.rs
index 93b2a595259..aae59eee991 100644
--- a/compiler/rustc_typeck/src/check/fn_ctxt/_impl.rs
+++ b/compiler/rustc_typeck/src/check/fn_ctxt/_impl.rs
@@ -952,7 +952,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
                     let mut err = rustc_errors::struct_span_err!(
                         self.sess(),
                         self_ty.span,
-                        E0783,
+                        E0782,
                         "{}",
                         msg,
                     );
diff --git a/src/test/ui/editions/dyn-trait-sugg-2021.stderr b/src/test/ui/editions/dyn-trait-sugg-2021.stderr
index f6e9fa96a15..a7119b073ab 100644
--- a/src/test/ui/editions/dyn-trait-sugg-2021.stderr
+++ b/src/test/ui/editions/dyn-trait-sugg-2021.stderr
@@ -1,4 +1,4 @@
-error[E0783]: trait objects without an explicit `dyn` are deprecated
+error[E0782]: trait objects without an explicit `dyn` are deprecated
   --> $DIR/dyn-trait-sugg-2021.rs:10:5
    |
 LL |     Foo::hi(123);
@@ -6,4 +6,4 @@ LL |     Foo::hi(123);
 
 error: aborting due to previous error
 
-For more information about this error, try `rustc --explain E0783`.
+For more information about this error, try `rustc --explain E0782`.