mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
7 lines
284 B
Rust
7 lines
284 B
Rust
//! Data structures for storing source-code-location information, used heavily
|
|
//! for contextual error messages.
|
|
#![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 all;
|