diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-01-31 06:58:26 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-31 06:58:26 +0100 | 
| commit | 6749f32c3389185ab655b0781ea495d46040092b (patch) | |
| tree | e6457dfeb401668a1ca4b3cf0b22945e71de89b1 /compiler/rustc_infer/src/infer/mod.rs | |
| parent | e58e7b10e13595b4df1b105bfb9ad03c8dee7832 (diff) | |
| parent | 521b1ee974296b4d2ecce79efaa10347642d1e3e (diff) | |
| download | rust-6749f32c3389185ab655b0781ea495d46040092b.tar.gz rust-6749f32c3389185ab655b0781ea495d46040092b.zip  | |
Rollup merge of #90277 - pierwill:fix-70258-inference-terms, r=jackh726
Improve terminology around "after typeck" Closes #70258.
Diffstat (limited to 'compiler/rustc_infer/src/infer/mod.rs')
| -rw-r--r-- | compiler/rustc_infer/src/infer/mod.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_infer/src/infer/mod.rs b/compiler/rustc_infer/src/infer/mod.rs index 266eec08ceb..d1b24b332bd 100644 --- a/compiler/rustc_infer/src/infer/mod.rs +++ b/compiler/rustc_infer/src/infer/mod.rs @@ -195,7 +195,7 @@ pub struct InferCtxtInner<'tcx> { // Opaque types found in explicit return types and their // associated fresh inference variable. Writeback resolves these // variables to get the concrete type, which can be used to - // 'de-opaque' OpaqueTypeDecl, after typeck is done with all functions. + // 'de-opaque' OpaqueTypeDecl outside of type inference. pub opaque_types: OpaqueTypeMap<'tcx>, /// A map from inference variables created from opaque  | 
