Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/inlay_hints/bounds.rs')
-rw-r--r--crates/ide/src/inlay_hints/bounds.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ide/src/inlay_hints/bounds.rs b/crates/ide/src/inlay_hints/bounds.rs
index e9b728bcaa..8ddbfaeffe 100644
--- a/crates/ide/src/inlay_hints/bounds.rs
+++ b/crates/ide/src/inlay_hints/bounds.rs
@@ -1,7 +1,7 @@
//! Implementation of trait bound hints.
//!
//! Currently this renders the implied `Sized` bound.
-use ide_db::{famous_defs::FamousDefs, FileRange};
+use ide_db::{FileRange, famous_defs::FamousDefs};
use span::EditionedFileId;
use syntax::ast::{self, AstNode, HasTypeBounds};
@@ -86,7 +86,7 @@ mod tests {
use crate::inlay_hints::InlayHintsConfig;
- use crate::inlay_hints::tests::{check_expect, check_with_config, DISABLED_CONFIG};
+ use crate::inlay_hints::tests::{DISABLED_CONFIG, check_expect, check_with_config};
#[track_caller]
fn check(#[rust_analyzer::rust_fixture] ra_fixture: &str) {