Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/goto_implementation.rs')
-rw-r--r--crates/ide/src/goto_implementation.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/goto_implementation.rs b/crates/ide/src/goto_implementation.rs
index 02d96a6473..4f17262190 100644
--- a/crates/ide/src/goto_implementation.rs
+++ b/crates/ide/src/goto_implementation.rs
@@ -234,6 +234,7 @@ impl crate::T for crate::Foo {}
);
}
+ // FIXME(next-solver): it would be nice to be able to also point to `&Foo`
#[test]
fn goto_implementation_all_impls() {
check(
@@ -246,7 +247,6 @@ impl Foo {}
impl T for Foo {}
//^^^
impl T for &Foo {}
- //^^^^
"#,
);
}