rustc_typeck exists no more

This commit is contained in:
Tshepang Mbambo 2023-01-15 21:18:38 +02:00
parent c7064daba1
commit 05d22ebd50
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
# Type checking
The [`rustc_typeck`][typeck] crate contains the source for "type collection"
The [`hir_analysis`] crate contains the source for "type collection"
and "type checking", as well as a few other bits of related functionality. (It
draws heavily on the [type inference] and [trait solving].)
[typeck]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_hir_analysis/index.html
[`hir_analysis`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_hir_analysis/index.html
[type inference]: ./type-inference.md
[trait solving]: ./traits/resolution.md