This repository was archived by the owner on Apr 5, 2024. It is now read-only.
This repository was archived by the owner on Apr 5, 2024. It is now read-only.
Use min capture results everywhere #18
Closed
Description
Currently, min capture analysis results are written to MaybeTypeckResults, which is a transient data structure within rustc_typeck.
For the results to be available post-typeck they need to be written out to TypeckResults.
The writeback stage in rustc_typeck/src/check/writeback.rs
needs to be updated to add the analysis results to the final results table.