@@ -123,7 +123,7 @@ impl<'tcx> LateLintPass<'tcx> for UnusedResults {
123
123
let must_use_result = is_ty_must_use ( cx, ty, & expr, expr. span ) ;
124
124
let type_lint_emitted_or_suppressed = match must_use_result {
125
125
Some ( path) => {
126
- emit_must_use_untranslated ( cx, & path, "" , "" , 1 ) ;
126
+ emit_must_use_untranslated ( cx, & path, "" , "" , 1 , false ) ;
127
127
true
128
128
}
129
129
None => false ,
@@ -358,6 +358,7 @@ impl<'tcx> LateLintPass<'tcx> for UnusedResults {
358
358
descr_pre_path,
359
359
descr_post_path,
360
360
1 ,
361
+ false ,
361
362
)
362
363
} )
363
364
. is_some ( )
@@ -370,27 +371,30 @@ impl<'tcx> LateLintPass<'tcx> for UnusedResults {
370
371
descr_pre : & str ,
371
372
descr_post : & str ,
372
373
plural_len : usize ,
374
+ is_inner : bool ,
373
375
) {
374
376
let plural_suffix = pluralize ! ( plural_len) ;
375
377
376
378
match path {
377
379
MustUsePath :: Suppressed => { }
378
380
MustUsePath :: Boxed ( path) => {
379
381
let descr_pre = & format ! ( "{}boxed " , descr_pre) ;
380
- emit_must_use_untranslated ( cx, path, descr_pre, descr_post, plural_len) ;
382
+ emit_must_use_untranslated ( cx, path, descr_pre, descr_post, plural_len, true ) ;
381
383
}
382
384
MustUsePath :: Opaque ( path) => {
383
385
let descr_pre = & format ! ( "{}implementer{} of " , descr_pre, plural_suffix) ;
384
- emit_must_use_untranslated ( cx, path, descr_pre, descr_post, plural_len) ;
386
+ emit_must_use_untranslated ( cx, path, descr_pre, descr_post, plural_len, true ) ;
385
387
}
386
388
MustUsePath :: TraitObject ( path) => {
387
389
let descr_post = & format ! ( " trait object{}{}" , plural_suffix, descr_post) ;
388
- emit_must_use_untranslated ( cx, path, descr_pre, descr_post, plural_len) ;
390
+ emit_must_use_untranslated ( cx, path, descr_pre, descr_post, plural_len, true ) ;
389
391
}
390
392
MustUsePath :: TupleElement ( elems) => {
391
393
for ( index, path) in elems {
392
394
let descr_post = & format ! ( " in tuple element {}" , index) ;
393
- emit_must_use_untranslated ( cx, path, descr_pre, descr_post, plural_len) ;
395
+ emit_must_use_untranslated (
396
+ cx, path, descr_pre, descr_post, plural_len, true ,
397
+ ) ;
394
398
}
395
399
}
396
400
MustUsePath :: Array ( path, len) => {
@@ -401,6 +405,7 @@ impl<'tcx> LateLintPass<'tcx> for UnusedResults {
401
405
descr_pre,
402
406
descr_post,
403
407
plural_len. saturating_add ( usize:: try_from ( * len) . unwrap_or ( usize:: MAX ) ) ,
408
+ true ,
404
409
) ;
405
410
}
406
411
MustUsePath :: Closure ( span) => {
@@ -418,19 +423,6 @@ impl<'tcx> LateLintPass<'tcx> for UnusedResults {
418
423
) ;
419
424
}
420
425
MustUsePath :: Def ( span, def_id, reason) => {
421
- let suggestion = if matches ! (
422
- cx. tcx. get_diagnostic_name( * def_id) ,
423
- Some ( sym:: add)
424
- | Some ( sym:: sub)
425
- | Some ( sym:: mul)
426
- | Some ( sym:: div)
427
- | Some ( sym:: rem)
428
- | Some ( sym:: neg) ,
429
- ) {
430
- Some ( UnusedDefSuggestion :: Default { span : span. shrink_to_lo ( ) } )
431
- } else {
432
- None
433
- } ;
434
426
cx. emit_spanned_lint (
435
427
UNUSED_MUST_USE ,
436
428
* span,
@@ -440,7 +432,8 @@ impl<'tcx> LateLintPass<'tcx> for UnusedResults {
440
432
cx,
441
433
def_id : * def_id,
442
434
note : * reason,
443
- suggestion,
435
+ suggestion : ( !is_inner)
436
+ . then_some ( UnusedDefSuggestion { span : span. shrink_to_lo ( ) } ) ,
444
437
} ,
445
438
) ;
446
439
}
0 commit comments