mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
10 lines
344 B
Rust
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;
|