File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,6 @@ impl FlagComputation {
93
93
94
94
& ty:: Bound ( debruijn, _) => {
95
95
self . add_binder ( debruijn) ;
96
- self . add_flags ( TypeFlags :: STILL_FURTHER_SPECIALIZABLE ) ;
97
96
}
98
97
99
98
& ty:: Placeholder ( ..) => {
@@ -216,7 +215,6 @@ impl FlagComputation {
216
215
}
217
216
ty:: ConstKind :: Bound ( debruijn, _) => {
218
217
self . add_binder ( debruijn) ;
219
- self . add_flags ( TypeFlags :: STILL_FURTHER_SPECIALIZABLE ) ;
220
218
}
221
219
ty:: ConstKind :: Param ( _) => {
222
220
self . add_flags ( TypeFlags :: HAS_CT_PARAM ) ;
Original file line number Diff line number Diff line change @@ -1589,19 +1589,16 @@ impl RegionKind {
1589
1589
flags = flags | TypeFlags :: HAS_FREE_REGIONS ;
1590
1590
flags = flags | TypeFlags :: HAS_FREE_LOCAL_REGIONS ;
1591
1591
flags = flags | TypeFlags :: HAS_RE_INFER ;
1592
- flags = flags | TypeFlags :: STILL_FURTHER_SPECIALIZABLE ;
1593
1592
}
1594
1593
ty:: RePlaceholder ( ..) => {
1595
1594
flags = flags | TypeFlags :: HAS_FREE_REGIONS ;
1596
1595
flags = flags | TypeFlags :: HAS_FREE_LOCAL_REGIONS ;
1597
1596
flags = flags | TypeFlags :: HAS_RE_PLACEHOLDER ;
1598
- flags = flags | TypeFlags :: STILL_FURTHER_SPECIALIZABLE ;
1599
1597
}
1600
1598
ty:: ReEarlyBound ( ..) => {
1601
1599
flags = flags | TypeFlags :: HAS_FREE_REGIONS ;
1602
1600
flags = flags | TypeFlags :: HAS_FREE_LOCAL_REGIONS ;
1603
1601
flags = flags | TypeFlags :: HAS_RE_PARAM ;
1604
- flags = flags | TypeFlags :: STILL_FURTHER_SPECIALIZABLE ;
1605
1602
}
1606
1603
ty:: ReFree { .. } => {
1607
1604
flags = flags | TypeFlags :: HAS_FREE_REGIONS ;
You can’t perform that action at this time.
0 commit comments