@@ -1208,8 +1208,6 @@ pub struct Resolver<'ra, 'tcx> {
1208
1208
/// they are declared in the static array generated by proc_macro_harness.
1209
1209
proc_macros : Vec < NodeId > ,
1210
1210
confused_type_with_std_module : FxIndexMap < Span , Span > ,
1211
- /// Whether lifetime elision was successful.
1212
- lifetime_elision_allowed : FxHashSet < NodeId > ,
1213
1211
1214
1212
/// Names of items that were stripped out via cfg with their corresponding cfg meta item.
1215
1213
stripped_cfg_items : Vec < StrippedCfgItem < NodeId > > ,
@@ -1586,7 +1584,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
1586
1584
trait_impls : Default :: default ( ) ,
1587
1585
proc_macros : Default :: default ( ) ,
1588
1586
confused_type_with_std_module : Default :: default ( ) ,
1589
- lifetime_elision_allowed : Default :: default ( ) ,
1590
1587
stripped_cfg_items : Default :: default ( ) ,
1591
1588
effective_visibilities : Default :: default ( ) ,
1592
1589
doc_link_resolutions : Default :: default ( ) ,
@@ -1706,7 +1703,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
1706
1703
extra_lifetime_params_map : self . extra_lifetime_params_map ,
1707
1704
next_node_id : self . next_node_id ,
1708
1705
trait_map : self . trait_map ,
1709
- lifetime_elision_allowed : self . lifetime_elision_allowed ,
1710
1706
lint_buffer : Steal :: new ( self . lint_buffer ) ,
1711
1707
delegation_fn_sigs : self . delegation_fn_sigs ,
1712
1708
} ;
0 commit comments