rust/compiler/rustc_typeck
bors 5ffa8f67b7 Auto merge of #98222 - cjgillot:single-wf, r=michaelwoerister
Only keep a single query for well-formed checking

There are currently 3 queries to perform wf checks on different item-likes.  This complexity is not required.

This PR replaces the query by:
- one query per item;
- one query to invoke it for a whole module.

This allows to remove HIR `ParItemLikeVisitor`.
2022-06-28 03:44:33 +00:00
..
src Auto merge of #98222 - cjgillot:single-wf, r=michaelwoerister 2022-06-28 03:44:33 +00:00
Cargo.toml stop pointing at definitions of missing fields 2022-06-22 12:01:41 +09:00
README.md

For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc dev guide.