3
3
use std:: assert_matches:: debug_assert_matches;
4
4
use std:: borrow:: Cow ;
5
5
use std:: iter;
6
+ use std:: path:: PathBuf ;
6
7
7
8
use itertools:: { EitherOrBoth , Itertools } ;
8
9
use rustc_data_structures:: fx:: FxHashSet ;
@@ -2703,6 +2704,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
2703
2704
// Add a note for the item obligation that remains - normally a note pointing to the
2704
2705
// bound that introduced the obligation (e.g. `T: Send`).
2705
2706
debug ! ( ?next_code) ;
2707
+ let mut long_ty_file = None ;
2706
2708
self . note_obligation_cause_code (
2707
2709
obligation. cause . body_id ,
2708
2710
err,
@@ -2711,6 +2713,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
2711
2713
next_code. unwrap ( ) ,
2712
2714
& mut Vec :: new ( ) ,
2713
2715
& mut Default :: default ( ) ,
2716
+ & mut long_ty_file,
2714
2717
) ;
2715
2718
}
2716
2719
@@ -2723,11 +2726,10 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
2723
2726
cause_code : & ObligationCauseCode < ' tcx > ,
2724
2727
obligated_types : & mut Vec < Ty < ' tcx > > ,
2725
2728
seen_requirements : & mut FxHashSet < DefId > ,
2729
+ long_ty_file : & mut Option < PathBuf > ,
2726
2730
) where
2727
2731
T : Upcast < TyCtxt < ' tcx > , ty:: Predicate < ' tcx > > ,
2728
2732
{
2729
- let mut long_ty_file = None ;
2730
-
2731
2733
let tcx = self . tcx ;
2732
2734
let predicate = predicate. upcast ( tcx) ;
2733
2735
let suggest_remove_deref = |err : & mut Diag < ' _ , G > , expr : & hir:: Expr < ' _ > | {
@@ -2957,9 +2959,9 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
2957
2959
}
2958
2960
ObligationCauseCode :: Coercion { source, target } => {
2959
2961
let source =
2960
- tcx. short_ty_string ( self . resolve_vars_if_possible ( source) , & mut long_ty_file) ;
2962
+ tcx. short_ty_string ( self . resolve_vars_if_possible ( source) , long_ty_file) ;
2961
2963
let target =
2962
- tcx. short_ty_string ( self . resolve_vars_if_possible ( target) , & mut long_ty_file) ;
2964
+ tcx. short_ty_string ( self . resolve_vars_if_possible ( target) , long_ty_file) ;
2963
2965
err. note ( with_forced_trimmed_paths ! ( format!(
2964
2966
"required for the cast from `{source}` to `{target}`" ,
2965
2967
) ) ) ;
@@ -3249,7 +3251,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3249
3251
} ;
3250
3252
3251
3253
if !is_upvar_tys_infer_tuple {
3252
- let ty_str = tcx. short_ty_string ( ty, & mut long_ty_file) ;
3254
+ let ty_str = tcx. short_ty_string ( ty, long_ty_file) ;
3253
3255
let msg = format ! ( "required because it appears within the type `{ty_str}`" ) ;
3254
3256
match ty. kind ( ) {
3255
3257
ty:: Adt ( def, _) => match tcx. opt_item_ident ( def. did ( ) ) {
@@ -3327,6 +3329,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3327
3329
& data. parent_code ,
3328
3330
obligated_types,
3329
3331
seen_requirements,
3332
+ long_ty_file,
3330
3333
)
3331
3334
} ) ;
3332
3335
} else {
@@ -3339,6 +3342,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3339
3342
cause_code. peel_derives ( ) ,
3340
3343
obligated_types,
3341
3344
seen_requirements,
3345
+ long_ty_file,
3342
3346
)
3343
3347
} ) ;
3344
3348
}
@@ -3347,8 +3351,8 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3347
3351
let mut parent_trait_pred =
3348
3352
self . resolve_vars_if_possible ( data. derived . parent_trait_pred ) ;
3349
3353
let parent_def_id = parent_trait_pred. def_id ( ) ;
3350
- let self_ty_str = tcx
3351
- . short_ty_string ( parent_trait_pred. skip_binder ( ) . self_ty ( ) , & mut long_ty_file) ;
3354
+ let self_ty_str =
3355
+ tcx . short_ty_string ( parent_trait_pred. skip_binder ( ) . self_ty ( ) , long_ty_file) ;
3352
3356
let trait_name = parent_trait_pred. print_modifiers_and_trait_path ( ) . to_string ( ) ;
3353
3357
let msg = format ! ( "required for `{self_ty_str}` to implement `{trait_name}`" ) ;
3354
3358
let mut is_auto_trait = false ;
@@ -3444,10 +3448,8 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3444
3448
count,
3445
3449
pluralize!( count)
3446
3450
) ) ;
3447
- let self_ty = tcx. short_ty_string (
3448
- parent_trait_pred. skip_binder ( ) . self_ty ( ) ,
3449
- & mut long_ty_file,
3450
- ) ;
3451
+ let self_ty = tcx
3452
+ . short_ty_string ( parent_trait_pred. skip_binder ( ) . self_ty ( ) , long_ty_file) ;
3451
3453
err. note ( format ! (
3452
3454
"required for `{self_ty}` to implement `{}`" ,
3453
3455
parent_trait_pred. print_modifiers_and_trait_path( )
@@ -3463,6 +3465,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3463
3465
& data. parent_code ,
3464
3466
obligated_types,
3465
3467
seen_requirements,
3468
+ long_ty_file,
3466
3469
)
3467
3470
} ) ;
3468
3471
}
@@ -3479,6 +3482,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3479
3482
& data. parent_code ,
3480
3483
obligated_types,
3481
3484
seen_requirements,
3485
+ long_ty_file,
3482
3486
)
3483
3487
} ) ;
3484
3488
}
@@ -3493,6 +3497,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3493
3497
nested,
3494
3498
obligated_types,
3495
3499
seen_requirements,
3500
+ long_ty_file,
3496
3501
)
3497
3502
} ) ;
3498
3503
let mut multispan = MultiSpan :: from ( span) ;
@@ -3523,6 +3528,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3523
3528
parent_code,
3524
3529
obligated_types,
3525
3530
seen_requirements,
3531
+ long_ty_file,
3526
3532
)
3527
3533
} ) ;
3528
3534
}
@@ -3562,7 +3568,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3562
3568
}
3563
3569
ObligationCauseCode :: OpaqueReturnType ( expr_info) => {
3564
3570
if let Some ( ( expr_ty, hir_id) ) = expr_info {
3565
- let expr_ty = self . tcx . short_ty_string ( expr_ty, & mut long_ty_file) ;
3571
+ let expr_ty = self . tcx . short_ty_string ( expr_ty, long_ty_file) ;
3566
3572
let expr = self . infcx . tcx . hir ( ) . expect_expr ( hir_id) ;
3567
3573
err. span_label (
3568
3574
expr. span ,
@@ -3574,14 +3580,6 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
3574
3580
}
3575
3581
}
3576
3582
}
3577
-
3578
- if let Some ( file) = long_ty_file {
3579
- err. note ( format ! (
3580
- "the full name for the type has been written to '{}'" ,
3581
- file. display( ) ,
3582
- ) ) ;
3583
- err. note ( "consider using `--verbose` to print the full type name to the console" ) ;
3584
- }
3585
3583
}
3586
3584
3587
3585
#[ instrument(
0 commit comments