]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_typeck/src/check/generator_interior.rs
Auto merge of #102189 - davidtwco:translation-derive-enums, r=compiler-errors
[rust.git] / compiler / rustc_typeck / src / check / generator_interior.rs
1 //! This calculates the types which has storage which lives across a suspension point in a
2 //! generator from the perspective of typeck. The actual types used at runtime
3 //! is calculated in `rustc_mir_transform::generator` and may be a subset of the
4 //! types computed here.
5
6 use self::drop_ranges::DropRanges;
7 use super::FnCtxt;
8 use rustc_data_structures::fx::{FxHashSet, FxIndexSet};
9 use rustc_errors::pluralize;
10 use rustc_hir as hir;
11 use rustc_hir::def::{CtorKind, DefKind, Res};
12 use rustc_hir::def_id::DefId;
13 use rustc_hir::hir_id::HirIdSet;
14 use rustc_hir::intravisit::{self, Visitor};
15 use rustc_hir::{Arm, Expr, ExprKind, Guard, HirId, Pat, PatKind};
16 use rustc_middle::middle::region::{self, Scope, ScopeData, YieldData};
17 use rustc_middle::ty::{self, RvalueScopes, Ty, TyCtxt, TypeVisitable};
18 use rustc_span::symbol::sym;
19 use rustc_span::Span;
20
21 mod drop_ranges;
22
23 struct InteriorVisitor<'a, 'tcx> {
24     fcx: &'a FnCtxt<'a, 'tcx>,
25     region_scope_tree: &'a region::ScopeTree,
26     types: FxIndexSet<ty::GeneratorInteriorTypeCause<'tcx>>,
27     rvalue_scopes: &'a RvalueScopes,
28     expr_count: usize,
29     kind: hir::GeneratorKind,
30     prev_unresolved_span: Option<Span>,
31     linted_values: HirIdSet,
32     drop_ranges: DropRanges,
33 }
34
35 impl<'a, 'tcx> InteriorVisitor<'a, 'tcx> {
36     fn record(
37         &mut self,
38         ty: Ty<'tcx>,
39         hir_id: HirId,
40         scope: Option<region::Scope>,
41         expr: Option<&'tcx Expr<'tcx>>,
42         source_span: Span,
43     ) {
44         use rustc_span::DUMMY_SP;
45
46         let ty = self.fcx.resolve_vars_if_possible(ty);
47
48         debug!(
49             "attempting to record type ty={:?}; hir_id={:?}; scope={:?}; expr={:?}; source_span={:?}; expr_count={:?}",
50             ty, hir_id, scope, expr, source_span, self.expr_count,
51         );
52
53         let live_across_yield = scope
54             .map(|s| {
55                 self.region_scope_tree.yield_in_scope(s).and_then(|yield_data| {
56                     // If we are recording an expression that is the last yield
57                     // in the scope, or that has a postorder CFG index larger
58                     // than the one of all of the yields, then its value can't
59                     // be storage-live (and therefore live) at any of the yields.
60                     //
61                     // See the mega-comment at `yield_in_scope` for a proof.
62
63                     yield_data
64                         .iter()
65                         .find(|yield_data| {
66                             debug!(
67                                 "comparing counts yield: {} self: {}, source_span = {:?}",
68                                 yield_data.expr_and_pat_count, self.expr_count, source_span
69                             );
70
71                             if self.fcx.sess().opts.unstable_opts.drop_tracking
72                                 && self
73                                     .drop_ranges
74                                     .is_dropped_at(hir_id, yield_data.expr_and_pat_count)
75                             {
76                                 debug!("value is dropped at yield point; not recording");
77                                 return false;
78                             }
79
80                             // If it is a borrowing happening in the guard,
81                             // it needs to be recorded regardless because they
82                             // do live across this yield point.
83                             yield_data.expr_and_pat_count >= self.expr_count
84                         })
85                         .cloned()
86                 })
87             })
88             .unwrap_or_else(|| {
89                 Some(YieldData { span: DUMMY_SP, expr_and_pat_count: 0, source: self.kind.into() })
90             });
91
92         if let Some(yield_data) = live_across_yield {
93             debug!(
94                 "type in expr = {:?}, scope = {:?}, type = {:?}, count = {}, yield_span = {:?}",
95                 expr, scope, ty, self.expr_count, yield_data.span
96             );
97
98             if let Some((unresolved_type, unresolved_type_span)) =
99                 self.fcx.unresolved_type_vars(&ty)
100             {
101                 // If unresolved type isn't a ty_var then unresolved_type_span is None
102                 let span = self
103                     .prev_unresolved_span
104                     .unwrap_or_else(|| unresolved_type_span.unwrap_or(source_span));
105
106                 // If we encounter an int/float variable, then inference fallback didn't
107                 // finish due to some other error. Don't emit spurious additional errors.
108                 if let ty::Infer(ty::InferTy::IntVar(_) | ty::InferTy::FloatVar(_)) =
109                     unresolved_type.kind()
110                 {
111                     self.fcx
112                         .tcx
113                         .sess
114                         .delay_span_bug(span, &format!("Encountered var {:?}", unresolved_type));
115                 } else {
116                     let note = format!(
117                         "the type is part of the {} because of this {}",
118                         self.kind, yield_data.source
119                     );
120
121                     self.fcx
122                         .need_type_info_err_in_generator(self.kind, span, unresolved_type)
123                         .span_note(yield_data.span, &*note)
124                         .emit();
125                 }
126             } else {
127                 // Insert the type into the ordered set.
128                 let scope_span = scope.map(|s| s.span(self.fcx.tcx, self.region_scope_tree));
129
130                 if !self.linted_values.contains(&hir_id) {
131                     check_must_not_suspend_ty(
132                         self.fcx,
133                         ty,
134                         hir_id,
135                         SuspendCheckData {
136                             expr,
137                             source_span,
138                             yield_span: yield_data.span,
139                             plural_len: 1,
140                             ..Default::default()
141                         },
142                     );
143                     self.linted_values.insert(hir_id);
144                 }
145
146                 self.types.insert(ty::GeneratorInteriorTypeCause {
147                     span: source_span,
148                     ty,
149                     scope_span,
150                     yield_span: yield_data.span,
151                     expr: expr.map(|e| e.hir_id),
152                 });
153             }
154         } else {
155             debug!(
156                 "no type in expr = {:?}, count = {:?}, span = {:?}",
157                 expr,
158                 self.expr_count,
159                 expr.map(|e| e.span)
160             );
161             if let Some((unresolved_type, unresolved_type_span)) =
162                 self.fcx.unresolved_type_vars(&ty)
163             {
164                 debug!(
165                     "remained unresolved_type = {:?}, unresolved_type_span: {:?}",
166                     unresolved_type, unresolved_type_span
167                 );
168                 self.prev_unresolved_span = unresolved_type_span;
169             }
170         }
171     }
172 }
173
174 pub fn resolve_interior<'a, 'tcx>(
175     fcx: &'a FnCtxt<'a, 'tcx>,
176     def_id: DefId,
177     body_id: hir::BodyId,
178     interior: Ty<'tcx>,
179     kind: hir::GeneratorKind,
180 ) {
181     let body = fcx.tcx.hir().body(body_id);
182     let typeck_results = fcx.inh.typeck_results.borrow();
183     let mut visitor = InteriorVisitor {
184         fcx,
185         types: FxIndexSet::default(),
186         region_scope_tree: fcx.tcx.region_scope_tree(def_id),
187         rvalue_scopes: &typeck_results.rvalue_scopes,
188         expr_count: 0,
189         kind,
190         prev_unresolved_span: None,
191         linted_values: <_>::default(),
192         drop_ranges: drop_ranges::compute_drop_ranges(fcx, def_id, body),
193     };
194     intravisit::walk_body(&mut visitor, body);
195
196     // Check that we visited the same amount of expressions as the RegionResolutionVisitor
197     let region_expr_count = fcx.tcx.region_scope_tree(def_id).body_expr_count(body_id).unwrap();
198     assert_eq!(region_expr_count, visitor.expr_count);
199
200     // The types are already kept in insertion order.
201     let types = visitor.types;
202
203     // The types in the generator interior contain lifetimes local to the generator itself,
204     // which should not be exposed outside of the generator. Therefore, we replace these
205     // lifetimes with existentially-bound lifetimes, which reflect the exact value of the
206     // lifetimes not being known by users.
207     //
208     // These lifetimes are used in auto trait impl checking (for example,
209     // if a Sync generator contains an &'α T, we need to check whether &'α T: Sync),
210     // so knowledge of the exact relationships between them isn't particularly important.
211
212     debug!("types in generator {:?}, span = {:?}", types, body.value.span);
213
214     let mut counter = 0;
215     let mut captured_tys = FxHashSet::default();
216     let type_causes: Vec<_> = types
217         .into_iter()
218         .filter_map(|mut cause| {
219             // Erase regions and canonicalize late-bound regions to deduplicate as many types as we
220             // can.
221             let ty = fcx.normalize_associated_types_in(cause.span, cause.ty);
222             let erased = fcx.tcx.erase_regions(ty);
223             if captured_tys.insert(erased) {
224                 // Replace all regions inside the generator interior with late bound regions.
225                 // Note that each region slot in the types gets a new fresh late bound region,
226                 // which means that none of the regions inside relate to any other, even if
227                 // typeck had previously found constraints that would cause them to be related.
228                 let folded = fcx.tcx.fold_regions(erased, |_, current_depth| {
229                     let br = ty::BoundRegion {
230                         var: ty::BoundVar::from_u32(counter),
231                         kind: ty::BrAnon(counter),
232                     };
233                     let r = fcx.tcx.mk_region(ty::ReLateBound(current_depth, br));
234                     counter += 1;
235                     r
236                 });
237
238                 cause.ty = folded;
239                 Some(cause)
240             } else {
241                 None
242             }
243         })
244         .collect();
245
246     // Extract type components to build the witness type.
247     let type_list = fcx.tcx.mk_type_list(type_causes.iter().map(|cause| cause.ty));
248     let bound_vars = fcx.tcx.mk_bound_variable_kinds(
249         (0..counter).map(|i| ty::BoundVariableKind::Region(ty::BrAnon(i))),
250     );
251     let witness =
252         fcx.tcx.mk_generator_witness(ty::Binder::bind_with_vars(type_list, bound_vars.clone()));
253
254     drop(typeck_results);
255     // Store the generator types and spans into the typeck results for this generator.
256     fcx.inh.typeck_results.borrow_mut().generator_interior_types =
257         ty::Binder::bind_with_vars(type_causes, bound_vars);
258
259     debug!(
260         "types in generator after region replacement {:?}, span = {:?}",
261         witness, body.value.span
262     );
263
264     // Unify the type variable inside the generator with the new witness
265     match fcx.at(&fcx.misc(body.value.span), fcx.param_env).eq(interior, witness) {
266         Ok(ok) => fcx.register_infer_ok_obligations(ok),
267         _ => bug!("failed to relate {interior} and {witness}"),
268     }
269 }
270
271 // This visitor has to have the same visit_expr calls as RegionResolutionVisitor in
272 // librustc_middle/middle/region.rs since `expr_count` is compared against the results
273 // there.
274 impl<'a, 'tcx> Visitor<'tcx> for InteriorVisitor<'a, 'tcx> {
275     fn visit_arm(&mut self, arm: &'tcx Arm<'tcx>) {
276         let Arm { guard, pat, body, .. } = arm;
277         self.visit_pat(pat);
278         if let Some(ref g) = guard {
279             {
280                 // If there is a guard, we need to count all variables bound in the pattern as
281                 // borrowed for the entire guard body, regardless of whether they are accessed.
282                 // We do this by walking the pattern bindings and recording `&T` for any `x: T`
283                 // that is bound.
284
285                 struct ArmPatCollector<'a, 'b, 'tcx> {
286                     interior_visitor: &'a mut InteriorVisitor<'b, 'tcx>,
287                     scope: Scope,
288                 }
289
290                 impl<'a, 'b, 'tcx> Visitor<'tcx> for ArmPatCollector<'a, 'b, 'tcx> {
291                     fn visit_pat(&mut self, pat: &'tcx Pat<'tcx>) {
292                         intravisit::walk_pat(self, pat);
293                         if let PatKind::Binding(_, id, ident, ..) = pat.kind {
294                             let ty =
295                                 self.interior_visitor.fcx.typeck_results.borrow().node_type(id);
296                             let tcx = self.interior_visitor.fcx.tcx;
297                             let ty = tcx.mk_ref(
298                                 // Use `ReErased` as `resolve_interior` is going to replace all the
299                                 // regions anyway.
300                                 tcx.mk_region(ty::ReErased),
301                                 ty::TypeAndMut { ty, mutbl: hir::Mutability::Not },
302                             );
303                             self.interior_visitor.record(
304                                 ty,
305                                 id,
306                                 Some(self.scope),
307                                 None,
308                                 ident.span,
309                             );
310                         }
311                     }
312                 }
313
314                 ArmPatCollector {
315                     interior_visitor: self,
316                     scope: Scope { id: g.body().hir_id.local_id, data: ScopeData::Node },
317                 }
318                 .visit_pat(pat);
319             }
320
321             match g {
322                 Guard::If(ref e) => {
323                     self.visit_expr(e);
324                 }
325                 Guard::IfLet(ref l) => {
326                     self.visit_let_expr(l);
327                 }
328             }
329         }
330         self.visit_expr(body);
331     }
332
333     fn visit_pat(&mut self, pat: &'tcx Pat<'tcx>) {
334         intravisit::walk_pat(self, pat);
335
336         self.expr_count += 1;
337
338         if let PatKind::Binding(..) = pat.kind {
339             let scope = self.region_scope_tree.var_scope(pat.hir_id.local_id).unwrap();
340             let ty = self.fcx.typeck_results.borrow().pat_ty(pat);
341             self.record(ty, pat.hir_id, Some(scope), None, pat.span);
342         }
343     }
344
345     fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
346         match &expr.kind {
347             ExprKind::Call(callee, args) => match &callee.kind {
348                 ExprKind::Path(qpath) => {
349                     let res = self.fcx.typeck_results.borrow().qpath_res(qpath, callee.hir_id);
350                     match res {
351                         // Direct calls never need to keep the callee `ty::FnDef`
352                         // ZST in a temporary, so skip its type, just in case it
353                         // can significantly complicate the generator type.
354                         Res::Def(
355                             DefKind::Fn | DefKind::AssocFn | DefKind::Ctor(_, CtorKind::Fn),
356                             _,
357                         ) => {
358                             // NOTE(eddyb) this assumes a path expression has
359                             // no nested expressions to keep track of.
360                             self.expr_count += 1;
361
362                             // Record the rest of the call expression normally.
363                             for arg in *args {
364                                 self.visit_expr(arg);
365                             }
366                         }
367                         _ => intravisit::walk_expr(self, expr),
368                     }
369                 }
370                 _ => intravisit::walk_expr(self, expr),
371             },
372             _ => intravisit::walk_expr(self, expr),
373         }
374
375         self.expr_count += 1;
376
377         debug!("is_borrowed_temporary: {:?}", self.drop_ranges.is_borrowed_temporary(expr));
378
379         let ty = self.fcx.typeck_results.borrow().expr_ty_adjusted_opt(expr);
380         let may_need_drop = |ty: Ty<'tcx>| {
381             // Avoid ICEs in needs_drop.
382             let ty = self.fcx.resolve_vars_if_possible(ty);
383             let ty = self.fcx.tcx.erase_regions(ty);
384             if ty.needs_infer() {
385                 return true;
386             }
387             ty.needs_drop(self.fcx.tcx, self.fcx.param_env)
388         };
389
390         // Typically, the value produced by an expression is consumed by its parent in some way,
391         // so we only have to check if the parent contains a yield (note that the parent may, for
392         // example, store the value into a local variable, but then we already consider local
393         // variables to be live across their scope).
394         //
395         // However, in the case of temporary values, we are going to store the value into a
396         // temporary on the stack that is live for the current temporary scope and then return a
397         // reference to it. That value may be live across the entire temporary scope.
398         //
399         // There's another subtlety: if the type has an observable drop, it must be dropped after
400         // the yield, even if it's not borrowed or referenced after the yield. Ideally this would
401         // *only* happen for types with observable drop, not all types which wrap them, but that
402         // doesn't match the behavior of MIR borrowck and causes ICEs. See the FIXME comment in
403         // src/test/ui/generator/drop-tracking-parent-expression.rs.
404         let scope = if self.drop_ranges.is_borrowed_temporary(expr)
405             || ty.map_or(true, |ty| {
406                 let needs_drop = may_need_drop(ty);
407                 debug!(?needs_drop, ?ty);
408                 needs_drop
409             }) {
410             self.rvalue_scopes.temporary_scope(self.region_scope_tree, expr.hir_id.local_id)
411         } else {
412             let parent_expr = self
413                 .fcx
414                 .tcx
415                 .hir()
416                 .parent_iter(expr.hir_id)
417                 .find(|(_, node)| matches!(node, hir::Node::Expr(_)))
418                 .map(|(id, _)| id);
419             debug!("parent_expr: {:?}", parent_expr);
420             match parent_expr {
421                 Some(parent) => Some(Scope { id: parent.local_id, data: ScopeData::Node }),
422                 None => {
423                     self.rvalue_scopes.temporary_scope(self.region_scope_tree, expr.hir_id.local_id)
424                 }
425             }
426         };
427
428         // If there are adjustments, then record the final type --
429         // this is the actual value that is being produced.
430         if let Some(adjusted_ty) = ty {
431             self.record(adjusted_ty, expr.hir_id, scope, Some(expr), expr.span);
432         }
433
434         // Also record the unadjusted type (which is the only type if
435         // there are no adjustments). The reason for this is that the
436         // unadjusted value is sometimes a "temporary" that would wind
437         // up in a MIR temporary.
438         //
439         // As an example, consider an expression like `vec![].push(x)`.
440         // Here, the `vec![]` would wind up MIR stored into a
441         // temporary variable `t` which we can borrow to invoke
442         // `<Vec<_>>::push(&mut t, x)`.
443         //
444         // Note that an expression can have many adjustments, and we
445         // are just ignoring those intermediate types. This is because
446         // those intermediate values are always linearly "consumed" by
447         // the other adjustments, and hence would never be directly
448         // captured in the MIR.
449         //
450         // (Note that this partly relies on the fact that the `Deref`
451         // traits always return references, which means their content
452         // can be reborrowed without needing to spill to a temporary.
453         // If this were not the case, then we could conceivably have
454         // to create intermediate temporaries.)
455         //
456         // The type table might not have information for this expression
457         // if it is in a malformed scope. (#66387)
458         if let Some(ty) = self.fcx.typeck_results.borrow().expr_ty_opt(expr) {
459             self.record(ty, expr.hir_id, scope, Some(expr), expr.span);
460         } else {
461             self.fcx.tcx.sess.delay_span_bug(expr.span, "no type for node");
462         }
463     }
464 }
465
466 #[derive(Default)]
467 struct SuspendCheckData<'a, 'tcx> {
468     expr: Option<&'tcx Expr<'tcx>>,
469     source_span: Span,
470     yield_span: Span,
471     descr_pre: &'a str,
472     descr_post: &'a str,
473     plural_len: usize,
474 }
475
476 // Returns whether it emitted a diagnostic or not
477 // Note that this fn and the proceeding one are based on the code
478 // for creating must_use diagnostics
479 //
480 // Note that this technique was chosen over things like a `Suspend` marker trait
481 // as it is simpler and has precedent in the compiler
482 fn check_must_not_suspend_ty<'tcx>(
483     fcx: &FnCtxt<'_, 'tcx>,
484     ty: Ty<'tcx>,
485     hir_id: HirId,
486     data: SuspendCheckData<'_, 'tcx>,
487 ) -> bool {
488     if ty.is_unit()
489     // FIXME: should this check `is_ty_uninhabited_from`. This query is not available in this stage
490     // of typeck (before ReVar and RePlaceholder are removed), but may remove noise, like in
491     // `must_use`
492     // || fcx.tcx.is_ty_uninhabited_from(fcx.tcx.parent_module(hir_id).to_def_id(), ty, fcx.param_env)
493     {
494         return false;
495     }
496
497     let plural_suffix = pluralize!(data.plural_len);
498
499     debug!("Checking must_not_suspend for {}", ty);
500
501     match *ty.kind() {
502         ty::Adt(..) if ty.is_box() => {
503             let boxed_ty = ty.boxed_ty();
504             let descr_pre = &format!("{}boxed ", data.descr_pre);
505             check_must_not_suspend_ty(fcx, boxed_ty, hir_id, SuspendCheckData { descr_pre, ..data })
506         }
507         ty::Adt(def, _) => check_must_not_suspend_def(fcx.tcx, def.did(), hir_id, data),
508         // FIXME: support adding the attribute to TAITs
509         ty::Opaque(def, _) => {
510             let mut has_emitted = false;
511             for &(predicate, _) in fcx.tcx.explicit_item_bounds(def) {
512                 // We only look at the `DefId`, so it is safe to skip the binder here.
513                 if let ty::PredicateKind::Trait(ref poly_trait_predicate) =
514                     predicate.kind().skip_binder()
515                 {
516                     let def_id = poly_trait_predicate.trait_ref.def_id;
517                     let descr_pre = &format!("{}implementer{} of ", data.descr_pre, plural_suffix);
518                     if check_must_not_suspend_def(
519                         fcx.tcx,
520                         def_id,
521                         hir_id,
522                         SuspendCheckData { descr_pre, ..data },
523                     ) {
524                         has_emitted = true;
525                         break;
526                     }
527                 }
528             }
529             has_emitted
530         }
531         ty::Dynamic(binder, _, _) => {
532             let mut has_emitted = false;
533             for predicate in binder.iter() {
534                 if let ty::ExistentialPredicate::Trait(ref trait_ref) = predicate.skip_binder() {
535                     let def_id = trait_ref.def_id;
536                     let descr_post = &format!(" trait object{}{}", plural_suffix, data.descr_post);
537                     if check_must_not_suspend_def(
538                         fcx.tcx,
539                         def_id,
540                         hir_id,
541                         SuspendCheckData { descr_post, ..data },
542                     ) {
543                         has_emitted = true;
544                         break;
545                     }
546                 }
547             }
548             has_emitted
549         }
550         ty::Tuple(fields) => {
551             let mut has_emitted = false;
552             let comps = match data.expr.map(|e| &e.kind) {
553                 Some(hir::ExprKind::Tup(comps)) => {
554                     debug_assert_eq!(comps.len(), fields.len());
555                     Some(comps)
556                 }
557                 _ => None,
558             };
559             for (i, ty) in fields.iter().enumerate() {
560                 let descr_post = &format!(" in tuple element {i}");
561                 let span = comps.and_then(|c| c.get(i)).map(|e| e.span).unwrap_or(data.source_span);
562                 if check_must_not_suspend_ty(
563                     fcx,
564                     ty,
565                     hir_id,
566                     SuspendCheckData {
567                         descr_post,
568                         expr: comps.and_then(|comps| comps.get(i)),
569                         source_span: span,
570                         ..data
571                     },
572                 ) {
573                     has_emitted = true;
574                 }
575             }
576             has_emitted
577         }
578         ty::Array(ty, len) => {
579             let descr_pre = &format!("{}array{} of ", data.descr_pre, plural_suffix);
580             check_must_not_suspend_ty(
581                 fcx,
582                 ty,
583                 hir_id,
584                 SuspendCheckData {
585                     descr_pre,
586                     plural_len: len.try_eval_usize(fcx.tcx, fcx.param_env).unwrap_or(0) as usize
587                         + 1,
588                     ..data
589                 },
590             )
591         }
592         // If drop tracking is enabled, we want to look through references, since the referrent
593         // may not be considered live across the await point.
594         ty::Ref(_region, ty, _mutability) if fcx.sess().opts.unstable_opts.drop_tracking => {
595             let descr_pre = &format!("{}reference{} to ", data.descr_pre, plural_suffix);
596             check_must_not_suspend_ty(fcx, ty, hir_id, SuspendCheckData { descr_pre, ..data })
597         }
598         _ => false,
599     }
600 }
601
602 fn check_must_not_suspend_def(
603     tcx: TyCtxt<'_>,
604     def_id: DefId,
605     hir_id: HirId,
606     data: SuspendCheckData<'_, '_>,
607 ) -> bool {
608     if let Some(attr) = tcx.get_attr(def_id, sym::must_not_suspend) {
609         tcx.struct_span_lint_hir(
610             rustc_session::lint::builtin::MUST_NOT_SUSPEND,
611             hir_id,
612             data.source_span,
613             |lint| {
614                 let msg = format!(
615                     "{}`{}`{} held across a suspend point, but should not be",
616                     data.descr_pre,
617                     tcx.def_path_str(def_id),
618                     data.descr_post,
619                 );
620                 let mut err = lint.build(&msg);
621
622                 // add span pointing to the offending yield/await
623                 err.span_label(data.yield_span, "the value is held across this suspend point");
624
625                 // Add optional reason note
626                 if let Some(note) = attr.value_str() {
627                     // FIXME(guswynn): consider formatting this better
628                     err.span_note(data.source_span, note.as_str());
629                 }
630
631                 // Add some quick suggestions on what to do
632                 // FIXME: can `drop` work as a suggestion here as well?
633                 err.span_help(
634                     data.source_span,
635                     "consider using a block (`{ ... }`) \
636                     to shrink the value's scope, ending before the suspend point",
637                 );
638
639                 err.emit();
640             },
641         );
642
643         true
644     } else {
645         false
646     }
647 }