summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_infer/src/infer/relate/mod.rs
blob: f688c2b74a6d2fb3af8ae9ddd68a51346513a37a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! This module contains the definitions of most `TypeRelation`s in the type system
//! (except for some relations used for diagnostics and heuristics in the compiler).

pub(super) mod combine;
mod equate;
pub(super) mod generalize;
mod glb;
mod higher_ranked;
mod lattice;
mod lub;
pub mod nll;
mod sub;