rust/compiler/rustc_hir_analysis
Chris Denton 3f5406f5be
Rollup merge of #140302 - compiler-errors:inline_asm-bug, r=lcnr
Move inline asm check to typeck, properly handle aliases

Pull `InlineAsmCtxt` down to `rustc_hir_typeck`, and instead of using things like `Ty::is_copy`, use the `InferCtxt`-aware methods. To fix https://github.com/rust-lang/trait-system-refactor-initiative/issues/189, we also add a `try_structurally_resolve_*` call to `expr_ty`.

r? lcnr
2025-04-28 23:29:16 +00:00
..
src Rollup merge of #140302 - compiler-errors:inline_asm-bug, r=lcnr 2025-04-28 23:29:16 +00:00
Cargo.toml Move inline_asm to typeck, properly handle aliases 2025-04-27 22:05:07 +00:00
messages.ftl Move inline_asm to typeck, properly handle aliases 2025-04-27 22:05:07 +00:00
README.md

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