Remove redundant refs

This commit is contained in:
ayazhafiz 2021-11-24 09:29:08 -05:00
parent ba678d924d
commit a8e38172ac
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ use roc_types::subs::{
};
use roc_types::types::Type::{self, *};
use roc_types::types::{gather_fields_unsorted_iter, Alias, Category, ErrorType, PatternCategory};
use roc_unify::unify::{unify, Unified::*};
use roc_unify::unify::{unify, unify_without_error_compaction, Unified::*};
use std::collections::hash_map::Entry;
// Type checking system adapted from Elm by Evan Czaplicki, BSD-3-Clause Licensed