diff options
author | Florian Diebold <[email protected]> | 2021-05-16 17:27:17 +0100 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2021-05-21 16:49:09 +0100 |
commit | 9716c0b949b1a1a95b3f36928faed3abc21c0bda (patch) | |
tree | 3868e00827852afc86162fa82786592378511af5 /crates/hir_ty/src/tests | |
parent | 4bd446f5b3f8035d5db1fde1c6c50073e3f4fb2b (diff) |
Deal with goals arising from unification
Diffstat (limited to 'crates/hir_ty/src/tests')
-rw-r--r-- | crates/hir_ty/src/tests/regression.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/tests/regression.rs b/crates/hir_ty/src/tests/regression.rs index baef81590..ad9edf11c 100644 --- a/crates/hir_ty/src/tests/regression.rs +++ b/crates/hir_ty/src/tests/regression.rs | |||
@@ -758,7 +758,7 @@ fn issue_4885() { | |||
758 | "#, | 758 | "#, |
759 | expect![[r#" | 759 | expect![[r#" |
760 | 136..139 'key': &K | 760 | 136..139 'key': &K |
761 | 198..214 '{ ...key) }': {unknown} | 761 | 198..214 '{ ...key) }': impl Future<Output = <K as Foo<R>>::Bar> |
762 | 204..207 'bar': fn bar<R, K>(&K) -> impl Future<Output = <K as Foo<R>>::Bar> | 762 | 204..207 'bar': fn bar<R, K>(&K) -> impl Future<Output = <K as Foo<R>>::Bar> |
763 | 204..212 'bar(key)': impl Future<Output = <K as Foo<R>>::Bar> | 763 | 204..212 'bar(key)': impl Future<Output = <K as Foo<R>>::Bar> |
764 | 208..211 'key': &K | 764 | 208..211 'key': &K |