Skip to content

Commit c550f3a

Browse files
authored
Merge pull request #37582 from brson/beta-next
[beta] Long lines
2 parents dcdd37c + 287a321 commit c550f3a

File tree

1 file changed

+2
-1
lines changed
  • src/librustc/traits/specialize

1 file changed

+2
-1
lines changed

src/librustc/traits/specialize/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ pub fn specializes<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
194194
let selcx = &mut SelectionContext::new(&infcx);
195195
traits::normalize(selcx, ObligationCause::dummy(), &impl1_trait_ref)
196196
};
197-
infcx.parameter_environment.caller_bounds.extend(normalization_obligations.into_iter().map(|o| {
197+
infcx.parameter_environment.caller_bounds
198+
.extend(normalization_obligations.into_iter().map(|o| {
198199
match tcx.lift_to_global(&o.predicate) {
199200
Some(predicate) => predicate,
200201
None => {

0 commit comments

Comments
 (0)