mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-22 04:44:06 +00:00
6 lines
277 B
Rust
6 lines
277 B
Rust
//! Provides the Roc functions and modules that are implicitly imported into every module.
|
|
#![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 bitcode;
|
|
pub mod roc;
|