Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/tests/traits.rs')
| -rw-r--r-- | crates/hir-ty/src/tests/traits.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/hir-ty/src/tests/traits.rs b/crates/hir-ty/src/tests/traits.rs index b825a0a8f0..390553c0d7 100644 --- a/crates/hir-ty/src/tests/traits.rs +++ b/crates/hir-ty/src/tests/traits.rs @@ -4869,7 +4869,6 @@ async fn baz<T: AsyncFnOnce(u32) -> i32>(c: T) { expect![[r#" 37..38 'a': T 43..83 '{ ...ait; }': () - 43..83 '{ ...ait; }': impl Future<Output = ()> 53..57 'fut1': <T as AsyncFnMut<(u32,)>>::CallRefFuture<'?> 60..61 'a': T 60..64 'a(0)': <T as AsyncFnMut<(u32,)>>::CallRefFuture<'?> @@ -4878,7 +4877,6 @@ async fn baz<T: AsyncFnOnce(u32) -> i32>(c: T) { 70..80 'fut1.await': i32 124..129 'mut b': T 134..174 '{ ...ait; }': () - 134..174 '{ ...ait; }': impl Future<Output = ()> 144..148 'fut2': <T as AsyncFnMut<(u32,)>>::CallRefFuture<'?> 151..152 'b': T 151..155 'b(0)': <T as AsyncFnMut<(u32,)>>::CallRefFuture<'?> @@ -4887,7 +4885,6 @@ async fn baz<T: AsyncFnOnce(u32) -> i32>(c: T) { 161..171 'fut2.await': i32 216..217 'c': T 222..262 '{ ...ait; }': () - 222..262 '{ ...ait; }': impl Future<Output = ()> 232..236 'fut3': <T as AsyncFnOnce<(u32,)>>::CallOnceFuture 239..240 'c': T 239..243 'c(0)': <T as AsyncFnOnce<(u32,)>>::CallOnceFuture |