diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2022-01-26 15:10:01 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2022-02-02 15:40:11 +0000 |
| commit | edaf9625fbc4fc3bb4f8eb049112840e68d79351 (patch) | |
| tree | 647bb6e3da277557579f0c8f6c2859b8fcb1eb90 /compiler/rustc_middle/src/infer | |
| parent | 38f50d1ecb2adf9f9e6305b22cdee96bd65f9cbe (diff) | |
| download | rust-edaf9625fbc4fc3bb4f8eb049112840e68d79351.tar.gz rust-edaf9625fbc4fc3bb4f8eb049112840e68d79351.zip | |
Clean up leftovers from eager hidden type merging
Diffstat (limited to 'compiler/rustc_middle/src/infer')
| -rw-r--r-- | compiler/rustc_middle/src/infer/canonical.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/infer/canonical.rs b/compiler/rustc_middle/src/infer/canonical.rs index cc83010580f..654ec022b60 100644 --- a/compiler/rustc_middle/src/infer/canonical.rs +++ b/compiler/rustc_middle/src/infer/canonical.rs @@ -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, } |
