roc/crates/compiler/unify/src/lib.rs
2023-07-17 09:48:59 -05:00

10 lines
344 B
Rust

//! Implements Roc's unification algorithm, the heartstone of Roc's
//! [type inference](https://en.wikipedia.org/wiki/Type_inference).
#![warn(clippy::dbg_macro)]
// See github.com/roc-lang/roc/issues/800 for discussion of the large_enum_variant check.
#![allow(clippy::large_enum_variant)]
mod env;
mod fix;
pub mod unify;
pub use env::Env;