@@ -33,7 +33,7 @@ struct UnsafetyVisitor<'a, 'tcx> {
33
33
body_target_features : & ' tcx [ Symbol ] ,
34
34
/// When inside the LHS of an assignment to a field, this is the type
35
35
/// of the LHS and the span of the assignment expression.
36
- assignment_info : Option < ( Ty < ' tcx > , Span ) > ,
36
+ assignment_info : Option < Ty < ' tcx > > ,
37
37
in_union_destructure : bool ,
38
38
param_env : ParamEnv < ' tcx > ,
39
39
inside_adt : bool ,
@@ -473,10 +473,15 @@ impl<'a, 'tcx> Visitor<'a, 'tcx> for UnsafetyVisitor<'a, 'tcx> {
473
473
if let ty:: Adt ( adt_def, _) = lhs. ty . kind ( )
474
474
&& adt_def. is_union ( )
475
475
{
476
- if let Some ( ( assigned_ty, assignment_span ) ) = self . assignment_info {
476
+ if let Some ( assigned_ty) = self . assignment_info {
477
477
if assigned_ty. needs_drop ( self . tcx , self . param_env ) {
478
- // This would be unsafe, but should be outright impossible since we reject such unions.
479
- self . tcx . dcx ( ) . span_delayed_bug ( assignment_span, format ! ( "union fields that need dropping should be impossible: {assigned_ty}" ) ) ;
478
+ // This would be unsafe, but should be outright impossible since we
479
+ // reject such unions.
480
+ assert ! (
481
+ self . tcx. dcx( ) . has_errors( ) . is_some( ) ,
482
+ "union fields that need dropping should be impossible: \
483
+ {assigned_ty}"
484
+ ) ;
480
485
}
481
486
} else {
482
487
self . requires_unsafe ( expr. span , AccessToUnionField ) ;
@@ -492,14 +497,15 @@ impl<'a, 'tcx> Visitor<'a, 'tcx> for UnsafetyVisitor<'a, 'tcx> {
492
497
self . requires_unsafe ( expr. span , MutationOfLayoutConstrainedField ) ;
493
498
}
494
499
495
- // Second, check for accesses to union fields
496
- // don't have any special handling for AssignOp since it causes a read *and* write to lhs
500
+ // Second, check for accesses to union fields. Don't have any
501
+ // special handling for AssignOp since it causes a read *and*
502
+ // write to lhs.
497
503
if matches ! ( expr. kind, ExprKind :: Assign { .. } ) {
498
- self . assignment_info = Some ( ( lhs. ty , expr . span ) ) ;
504
+ self . assignment_info = Some ( lhs. ty ) ;
499
505
visit:: walk_expr ( self , lhs) ;
500
506
self . assignment_info = None ;
501
507
visit:: walk_expr ( self , & self . thir ( ) [ rhs] ) ;
502
- return ; // we have already visited everything by now
508
+ return ; // We have already visited everything by now.
503
509
}
504
510
}
505
511
ExprKind :: Borrow { borrow_kind, arg } => {
0 commit comments