roc/crates/compiler/problem/src/lib.rs
2022-11-03 20:00:06 +11:00

5 lines
249 B
Rust

//! Provides types to describe problems that can occur when compiling Roc code.
#![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 can;