Adding unify stub

This commit is contained in:
greg 2019-02-10 06:48:25 -08:00
parent 0dff177e8f
commit 5a70784346
1 changed files with 5 additions and 0 deletions

View File

@ -189,4 +189,9 @@ impl<'a> TypeContext<'a> {
_ => Type::Const(TypeConst::Unit)
})
}
fn unify(&mut self, t1: &Type, t2: &Type) -> InferResult<Type> {
unimplemented!()
}
}