Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_ty/src/infer.rs')
-rw-r--r--crates/hir_ty/src/infer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/infer.rs b/crates/hir_ty/src/infer.rs
index d7913e1dcf..c85112b0db 100644
--- a/crates/hir_ty/src/infer.rs
+++ b/crates/hir_ty/src/infer.rs
@@ -43,9 +43,9 @@ use crate::{
// This lint has a false positive here. See the link below for details.
//
// https://github.com/rust-lang/rust/issues/57411
+pub use coerce::could_coerce;
#[allow(unreachable_pub)]
pub use unify::could_unify;
-pub use coerce::could_coerce;
pub(crate) mod unify;
mod path;