diff options
| author | Michael Goulet <michael@errs.io> | 2023-04-25 19:48:59 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2023-04-27 17:18:12 +0000 |
| commit | 6c9249f68935c789231b89c15986795dbc95511e (patch) | |
| tree | 4dfcfd608abc4cf7a53f7a579d52f4c07db77ea4 /compiler/rustc_borrowck/src/diagnostics/mod.rs | |
| parent | e6077fc1b885c525279d127fd78db4574f735900 (diff) | |
| download | rust-6c9249f68935c789231b89c15986795dbc95511e.tar.gz rust-6c9249f68935c789231b89c15986795dbc95511e.zip | |
Don't call await a method
Diffstat (limited to 'compiler/rustc_borrowck/src/diagnostics/mod.rs')
| -rw-r--r-- | compiler/rustc_borrowck/src/diagnostics/mod.rs | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/compiler/rustc_borrowck/src/diagnostics/mod.rs b/compiler/rustc_borrowck/src/diagnostics/mod.rs index 4243ec214b0..a780255725e 100644 --- a/compiler/rustc_borrowck/src/diagnostics/mod.rs +++ b/compiler/rustc_borrowck/src/diagnostics/mod.rs @@ -1085,12 +1085,21 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> { } } } else { - err.subdiagnostic(CaptureReasonLabel::MethodCall { - fn_call_span, - place_name: &place_name, - is_partial, - is_loop_message, - }); + if let Some((CallDesugaringKind::Await, _)) = desugaring { + err.subdiagnostic(CaptureReasonLabel::Await { + fn_call_span, + place_name: &place_name, + is_partial, + is_loop_message, + }); + } else { + err.subdiagnostic(CaptureReasonLabel::MethodCall { + fn_call_span, + place_name: &place_name, + is_partial, + is_loop_message, + }); + } // Erase and shadow everything that could be passed to the new infcx. let ty = moved_place.ty(self.body, tcx).ty; |
