Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/tests/regression.rs')
-rw-r--r--crates/hir-ty/src/tests/regression.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/hir-ty/src/tests/regression.rs b/crates/hir-ty/src/tests/regression.rs
index 212fec4a4e..fd8c641d86 100644
--- a/crates/hir-ty/src/tests/regression.rs
+++ b/crates/hir-ty/src/tests/regression.rs
@@ -2299,10 +2299,10 @@ trait Foo {
}
"#,
expect![[r#"
- 83..86 'bar': Foo::Bar<Self, A, B>
+ 83..86 'bar': <Self as Foo>::Bar<A, B>
105..133 '{ ... }': ()
- 119..120 '_': Foo::Bar<Self, A, B>
- 123..126 'bar': Foo::Bar<Self, A, B>
+ 119..120 '_': <Self as Foo>::Bar<A, B>
+ 123..126 'bar': <Self as Foo>::Bar<A, B>
"#]],
);
}