Skip to content

Commit 116fc31

Browse files
committedNov 6, 2024
Auto merge of #132697 - compiler-errors:async-closure-sugar, r=fmease
Clean middle generics using paren sugar if trait has `#[rustc_paren_sugar]` That is to say, generalize the `Fn()` paren sugar handling to *any* trait that is marked with `rustc_paren_sugar`. This means that `AsyncFn` is also covered here. r? fmease
2 parents 4d215e2 + 7d8ca6d commit 116fc31

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed
 

‎src/librustdoc/clean/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ fn clean_middle_generic_args_with_constraints<'tcx>(
206206
) -> GenericArgs {
207207
let args = clean_middle_generic_args(cx, ty_args.map_bound(|args| &args[..]), has_self, did);
208208

209-
if cx.tcx.fn_trait_kind_from_def_id(did).is_some() {
209+
if cx.tcx.is_trait(did) && cx.tcx.trait_def(did).paren_sugar {
210210
let ty = ty_args
211211
.iter()
212212
.nth(if has_self { 1 } else { 0 })

‎tests/rustdoc/inline_cross/assoc_item_trait_bounds.rs

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ extern crate assoc_item_trait_bounds as aux;
2222
//@ has - '//*[@id="associatedtype.Out12"]' "type Out12: for<'w> Helper<B<'w> = Cow<'w, str>, A<'w> = bool>"
2323
//@ has - '//*[@id="associatedtype.Out13"]' "type Out13: for<'fst, 'snd> Aid<'snd, Result<'fst> = &'fst mut str>"
2424
//@ has - '//*[@id="associatedtype.Out14"]' "type Out14<P: Copy + Eq, Q: ?Sized>"
25+
//@ has - '//*[@id="associatedtype.Out15"]' "type Out15: AsyncFnMut(i32) -> bool"
2526
//
2627
// Snapshots:
2728
// Check that we don't render any where-clauses for the following associated types since

‎tests/rustdoc/inline_cross/auxiliary/assoc_item_trait_bounds.rs

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#![feature(async_closure)]
2+
3+
use std::ops::AsyncFnMut;
4+
15
pub trait Main {
26
type Item;
37

@@ -16,6 +20,7 @@ pub trait Main {
1620
type Out12: for<'w> Helper<B<'w> = std::borrow::Cow<'w, str>, A<'w> = bool>;
1721
type Out13: for<'fst, 'snd> Aid<'snd, Result<'fst> = &'fst mut str>;
1822
type Out14<P: Copy + Eq, Q: ?Sized>;
23+
type Out15: AsyncFnMut(i32) -> bool;
1924

2025
fn make<F>(_: F, _: impl FnMut(&str) -> bool)
2126
where

0 commit comments

Comments
 (0)