mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
fix some tests
This commit is contained in:
parent
4b642470cf
commit
df4533296b
5 changed files with 4 additions and 26 deletions
|
@ -151,14 +151,10 @@ pub fn uniq_expr_with(
|
|||
.collect();
|
||||
|
||||
// load builtin values
|
||||
<<<<<<< HEAD
|
||||
|
||||
// TODO what to do with those rigids?
|
||||
let (_introduced_rigids, constraint) =
|
||||
constrain_imported_values(imports, constraint, &var_store);
|
||||
=======
|
||||
let constraint = constrain_imported_values(imports, constraint, &var_store);
|
||||
>>>>>>> Move solve and uniq tests into other crates
|
||||
|
||||
// load builtin types
|
||||
let mut constraint = load_builtin_aliases(&stdlib.aliases, constraint, &var_store);
|
||||
|
@ -238,12 +234,8 @@ pub fn can_expr_with(arena: &Bump, home: ModuleId, expr_str: &str) -> CanExprOut
|
|||
.collect();
|
||||
|
||||
//load builtin values
|
||||
<<<<<<< HEAD
|
||||
let (_introduced_rigids, constraint) =
|
||||
constrain_imported_values(imports, constraint, &var_store);
|
||||
=======
|
||||
let constraint = constrain_imported_values(imports, constraint, &var_store);
|
||||
>>>>>>> Move solve and uniq tests into other crates
|
||||
|
||||
//load builtin types
|
||||
let mut constraint =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue