roc/crates/compiler/unify/src/lib.rs
2022-11-03 20:02:10 +11:00

7 lines
308 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)]
pub mod unify;