mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 16:21:11 +00:00
Use Procs::default()
This commit is contained in:
parent
bb9c9d423a
commit
74b58db477
1 changed files with 2 additions and 2 deletions
|
@ -13,9 +13,9 @@ mod helpers;
|
|||
mod test_opt {
|
||||
use crate::helpers::{infer_expr, uniq_expr};
|
||||
use bumpalo::Bump;
|
||||
use roc_collections::all::MutMap;
|
||||
use roc_module::symbol::Symbol;
|
||||
use roc_mono::expr::Expr::{self, *};
|
||||
use roc_mono::expr::Procs;
|
||||
use roc_mono::layout::{Builtin, Layout};
|
||||
|
||||
// HELPERS
|
||||
|
@ -28,7 +28,7 @@ mod test_opt {
|
|||
let (_content, subs) = infer_expr(subs, &mut unify_problems, &constraint, var);
|
||||
|
||||
// Compile and add all the Procs before adding main
|
||||
let mut procs = MutMap::default();
|
||||
let mut procs = Procs::default();
|
||||
let mut ident_ids = interns.all_ident_ids.remove(&home).unwrap();
|
||||
|
||||
// assume 64-bit pointers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue