rustc_next_trait_solver/
lib.rs

1//! Crate containing the implementation of the next-generation trait solver.
2//!
3//! This crate may also contain things that are used by the old trait solver,
4//! but were uplifted in the process of making the new trait solver generic.
5//! So if you got to this crate from the old solver, it's totally normal.
6
7// tidy-alphabetical-start
8#![allow(rustc::usage_of_type_ir_inherent)]
9#![warn(unreachable_pub)]
10// tidy-alphabetical-end
11
12pub mod canonicalizer;
13pub mod coherence;
14pub mod delegate;
15pub mod resolve;
16pub mod solve;