Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/body/pretty.rs')
| -rw-r--r-- | crates/hir-def/src/body/pretty.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir-def/src/body/pretty.rs b/crates/hir-def/src/body/pretty.rs index 610b7d8008..de3d995c9a 100644 --- a/crates/hir-def/src/body/pretty.rs +++ b/crates/hir-def/src/body/pretty.rs @@ -386,7 +386,7 @@ impl<'a> Printer<'a> { self.print_type_ref(ret_ty); } (None, ClosureKind::Async) => { - w!(self, " -> impl Future<Output = {{unknown}}>"); // FIXME(zachs18): {unknown} or ()? + w!(self, " -> impl Future<Output = {{unknown}}>"); } (None, _) => {} } |