mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 07:58:34 +00:00
Disable drop range analysis The previous PR, #93165, still performed the drop range analysis despite ignoring the results. Unfortunately, there were ICEs in the analysis as well, so some packages failed to build (see the issue #93197 for an example). This change further disables the analysis and just provides dummy results in that case.
For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc dev guide.