@@ -98,8 +98,14 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
98
98
return ;
99
99
}
100
100
101
- let err =
102
- self . report_use_of_uninitialized ( mpi, used_place, desired_action, span, use_spans) ;
101
+ let err = self . report_use_of_uninitialized (
102
+ mpi,
103
+ used_place,
104
+ moved_place,
105
+ desired_action,
106
+ span,
107
+ use_spans,
108
+ ) ;
103
109
self . buffer_error ( err) ;
104
110
} else {
105
111
if let Some ( ( reported_place, _) ) = self . has_move_error ( & move_out_indices) {
@@ -316,6 +322,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
316
322
& self ,
317
323
mpi : MovePathIndex ,
318
324
used_place : PlaceRef < ' tcx > ,
325
+ moved_place : PlaceRef < ' tcx > ,
319
326
desired_action : InitializationRequiringAction ,
320
327
span : Span ,
321
328
use_spans : UseSpans < ' tcx > ,
@@ -334,11 +341,15 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
334
341
}
335
342
}
336
343
337
- let ( binding , name, desc) =
338
- match self . describe_place_with_options ( used_place , IncludingDowncast ( true ) ) {
339
- Some ( name) => ( format ! ( "`{name}`" ) , format ! ( "`{name}`" ) , format ! ( "`{name}` ") ) ,
340
- None => ( "value" . to_string ( ) , " the variable". to_string ( ) , String :: new ( ) ) ,
344
+ let ( name, desc) =
345
+ match self . describe_place_with_options ( moved_place , IncludingDowncast ( true ) ) {
346
+ Some ( name) => ( format ! ( "`{name}`" ) , format ! ( "`{name}` " ) ) ,
347
+ None => ( "the variable" . to_string ( ) , String :: new ( ) ) ,
341
348
} ;
349
+ let path = match self . describe_place_with_options ( used_place, IncludingDowncast ( true ) ) {
350
+ Some ( name) => format ! ( "`{name}`" ) ,
351
+ None => "value" . to_string ( ) ,
352
+ } ;
342
353
343
354
// We use the statements were the binding was initialized, and inspect the HIR to look
344
355
// for the branching codepaths that aren't covered, to point at them.
@@ -390,13 +401,15 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
390
401
format ! ( "{} occurs due to use{}" , desired_action. as_noun( ) , use_spans. describe( ) ) ,
391
402
) ;
392
403
393
- if let InitializationRequiringAction :: PartialAssignment = desired_action {
404
+ if let InitializationRequiringAction :: PartialAssignment
405
+ | InitializationRequiringAction :: Assignment = desired_action
406
+ {
394
407
err. help (
395
408
"partial initialization isn't supported, fully initialize the binding with a \
396
409
default value and mutate it, or use `std::mem::MaybeUninit`",
397
410
) ;
398
411
}
399
- err. span_label ( span, format ! ( "{binding } {used} here but it {isnt_initialized}" ) ) ;
412
+ err. span_label ( span, format ! ( "{path } {used} here but it {isnt_initialized}" ) ) ;
400
413
401
414
let mut shown = false ;
402
415
for ( sp, label) in visitor. errors {
0 commit comments