Clean up leftovers from eager hidden type merging

This commit is contained in:
Oli Scherer
2022-01-26 15:10:01 +00:00
parent 38f50d1ecb
commit edaf9625fb
6 changed files with 34 additions and 109 deletions

View File

@@ -180,7 +180,7 @@ pub struct QueryResponse<'tcx, R> {
pub certainty: Certainty,
/// List of opaque types for which we figured out a hidden type
/// during the evaluation of the query.
pub opaque_types: Vec<(OpaqueTypeKey<'tcx>, Vec<Ty<'tcx>>)>,
pub opaque_types: Vec<(OpaqueTypeKey<'tcx>, Ty<'tcx>)>,
pub value: R,
}