rust/compiler/rustc_next_trait_solver/src/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
381 B
Rust
Raw Normal View History

2024-06-14 19:19:12 +00:00
//! Crate containing the implementation of the next-generation trait solver.
//!
//! This crate may also contain things that are used by the old trait solver,
//! but were uplifted in the process of making the new trait solver generic.
//! So if you got to this crate from the old solver, it's totally normal.
pub mod canonicalizer;
2024-06-17 15:58:38 +00:00
pub mod infcx;
pub mod resolve;
pub mod solve;