This commit is contained in:
Ayaz Hafiz 2023-06-22 14:30:16 -05:00
parent 6e5ee5562e
commit 739343a5b6
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
2 changed files with 3 additions and 1 deletions

View file

@ -75,7 +75,7 @@ impl<'a> Env<'a> {
}
/// Retrieves an environment for unification.
pub fn uenv<'r>(&'r mut self) -> UEnv<'r> {
pub fn uenv(&mut self) -> UEnv {
UEnv::new(self.subs)
}
}

View file

@ -3,6 +3,8 @@
#![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)]
// TODO to be removed
#![allow(clippy::too_many_arguments)]
pub mod ability;
pub mod module;