Make unify private again

This commit is contained in:
adamrk 2020-09-02 22:55:05 +02:00
parent 66658f1168
commit 5cd2c67c25
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ macro_rules! ty_app {
};
}
pub mod unify;
mod unify;
mod path;
mod expr;
mod pat;

View File

@ -43,7 +43,7 @@ macro_rules! eprintln {
};
pub use autoderef::autoderef;
pub use infer::{unify, InferTy, InferenceResult};
pub use infer::{InferTy, InferenceResult};
pub use lower::CallableDefId;
pub use lower::{
associated_type_shorthand_candidates, callable_item_sig, ImplTraitLoweringMode, TyDefId,