@@ -132,6 +132,7 @@ struct LoweringContext<'a, 'hir> {
132
132
133
133
allow_try_trait : Lrc < [ Symbol ] > ,
134
134
allow_gen_future : Lrc < [ Symbol ] > ,
135
+ allow_async_iterator : Lrc < [ Symbol ] > ,
135
136
136
137
/// Mapping from generics `def_id`s to TAIT generics `def_id`s.
137
138
/// For each captured lifetime (e.g., 'a), we create a new lifetime parameter that is a generic
@@ -176,6 +177,8 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
176
177
} else {
177
178
[ sym:: gen_future] . into ( )
178
179
} ,
180
+ // FIXME(gen_blocks): how does `closure_track_caller`
181
+ allow_async_iterator : [ sym:: gen_future, sym:: async_iterator] . into ( ) ,
179
182
generics_def_id_map : Default :: default ( ) ,
180
183
host_param_id : None ,
181
184
}
@@ -1900,14 +1903,18 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
1900
1903
fn_span : Span ,
1901
1904
) -> hir:: FnRetTy < ' hir > {
1902
1905
let span = self . lower_span ( fn_span) ;
1903
- let opaque_ty_span = self . mark_span_with_reason ( DesugaringKind :: Async , span, None ) ;
1904
1906
1905
- let opaque_ty_node_id = match coro {
1906
- CoroutineKind :: Async { return_impl_trait_id, .. }
1907
- | CoroutineKind :: Gen { return_impl_trait_id, .. }
1908
- | CoroutineKind :: AsyncGen { return_impl_trait_id, .. } => return_impl_trait_id,
1907
+ let ( opaque_ty_node_id, allowed_features) = match coro {
1908
+ CoroutineKind :: Async { return_impl_trait_id, .. } => ( return_impl_trait_id, None ) ,
1909
+ CoroutineKind :: Gen { return_impl_trait_id, .. } => ( return_impl_trait_id, None ) ,
1910
+ CoroutineKind :: AsyncGen { return_impl_trait_id, .. } => {
1911
+ ( return_impl_trait_id, Some ( self . allow_async_iterator . clone ( ) ) )
1912
+ }
1909
1913
} ;
1910
1914
1915
+ let opaque_ty_span =
1916
+ self . mark_span_with_reason ( DesugaringKind :: Async , span, allowed_features) ;
1917
+
1911
1918
let captured_lifetimes: Vec < _ > = self
1912
1919
. resolver
1913
1920
. take_extra_lifetime_params ( opaque_ty_node_id)
@@ -1926,7 +1933,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
1926
1933
let bound = this. lower_coroutine_fn_output_type_to_bound (
1927
1934
output,
1928
1935
coro,
1929
- span ,
1936
+ opaque_ty_span ,
1930
1937
ImplTraitContext :: ReturnPositionOpaqueTy {
1931
1938
origin : hir:: OpaqueTyOrigin :: FnReturn ( fn_def_id) ,
1932
1939
fn_kind,
@@ -1945,7 +1952,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
1945
1952
& mut self ,
1946
1953
output : & FnRetTy ,
1947
1954
coro : CoroutineKind ,
1948
- span : Span ,
1955
+ opaque_ty_span : Span ,
1949
1956
nested_impl_trait_context : ImplTraitContext ,
1950
1957
) -> hir:: GenericBound < ' hir > {
1951
1958
// Compute the `T` in `Future<Output = T>` from the return type.
@@ -1968,14 +1975,14 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
1968
1975
1969
1976
let future_args = self . arena . alloc ( hir:: GenericArgs {
1970
1977
args : & [ ] ,
1971
- bindings : arena_vec ! [ self ; self . assoc_ty_binding( assoc_ty_name, span , output_ty) ] ,
1978
+ bindings : arena_vec ! [ self ; self . assoc_ty_binding( assoc_ty_name, opaque_ty_span , output_ty) ] ,
1972
1979
parenthesized : hir:: GenericArgsParentheses :: No ,
1973
1980
span_ext : DUMMY_SP ,
1974
1981
} ) ;
1975
1982
1976
1983
hir:: GenericBound :: LangItemTrait (
1977
1984
trait_lang_item,
1978
- self . lower_span ( span ) ,
1985
+ opaque_ty_span ,
1979
1986
self . next_id ( ) ,
1980
1987
future_args,
1981
1988
)
0 commit comments