Remove in_band_lifetimes from rustc_trait_selection

This commit is contained in:
Sylvan Bowdler
2021-12-14 09:44:49 +00:00
committed by Sylvan Bowdler
parent 195e931b02
commit dd5717a6d6
18 changed files with 63 additions and 54 deletions

View File

@@ -219,7 +219,7 @@ impl<'tcx> AutoTraitFinder<'tcx> {
}
}
impl AutoTraitFinder<'tcx> {
impl<'tcx> AutoTraitFinder<'tcx> {
/// The core logic responsible for computing the bounds for our synthesized impl.
///
/// To calculate the bounds, we call `SelectionContext.select` in a loop. Like