rust/compiler/rustc_next_trait_solver/src/lib.rs
2024-06-18 11:04:01 -04:00

12 lines
406 B
Rust

//! 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.
#![feature(let_chains)]
pub mod canonicalizer;
pub mod infcx;
pub mod resolve;
pub mod solve;