rustc_metadata: fix for the new ?
ambiguity around collect.
This commit is contained in:
parent
dadbaa48ac
commit
f2283a7be0
1 changed files with 1 additions and 1 deletions
|
@ -366,7 +366,7 @@ impl<'a, 'tcx> SpecializedDecoder<ty::GenericPredicates<'tcx>> for DecodeContext
|
|||
} else {
|
||||
ty::Predicate::decode(self)
|
||||
}
|
||||
}).collect()?
|
||||
}).collect::<Result<Vec<_>, _>>()?
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue