@@ -2076,7 +2076,7 @@ fn confirm_coroutine_candidate<'cx, 'tcx>(
2076
2076
else {
2077
2077
unreachable ! ( )
2078
2078
} ;
2079
- let coroutine_sig = args. as_coroutine ( ) . poly_sig ( ) ;
2079
+ let coroutine_sig = args. as_coroutine ( ) . sig ( ) ;
2080
2080
let Normalized { value : coroutine_sig, obligations } = normalize_with_depth (
2081
2081
selcx,
2082
2082
obligation. param_env ,
@@ -2091,29 +2091,28 @@ fn confirm_coroutine_candidate<'cx, 'tcx>(
2091
2091
2092
2092
let coroutine_def_id = tcx. require_lang_item ( LangItem :: Coroutine , None ) ;
2093
2093
2094
- let predicate = super :: util:: coroutine_trait_ref_and_outputs (
2094
+ let ( trait_ref , yield_ty , return_ty ) = super :: util:: coroutine_trait_ref_and_outputs (
2095
2095
tcx,
2096
2096
coroutine_def_id,
2097
2097
obligation. predicate . self_ty ( ) ,
2098
2098
coroutine_sig,
2099
- )
2100
- . map_bound ( |( trait_ref, yield_ty, return_ty) | {
2101
- let name = tcx. associated_item ( obligation. predicate . def_id ) . name ;
2102
- let ty = if name == sym:: Return {
2103
- return_ty
2104
- } else if name == sym:: Yield {
2105
- yield_ty
2106
- } else {
2107
- bug ! ( )
2108
- } ;
2099
+ ) ;
2109
2100
2110
- ty:: ProjectionPredicate {
2111
- projection_ty : ty:: AliasTy :: new ( tcx, obligation. predicate . def_id , trait_ref. args ) ,
2112
- term : ty. into ( ) ,
2113
- }
2114
- } ) ;
2101
+ let name = tcx. associated_item ( obligation. predicate . def_id ) . name ;
2102
+ let ty = if name == sym:: Return {
2103
+ return_ty
2104
+ } else if name == sym:: Yield {
2105
+ yield_ty
2106
+ } else {
2107
+ bug ! ( )
2108
+ } ;
2109
+
2110
+ let predicate = ty:: ProjectionPredicate {
2111
+ projection_ty : ty:: AliasTy :: new ( tcx, obligation. predicate . def_id , trait_ref. args ) ,
2112
+ term : ty. into ( ) ,
2113
+ } ;
2115
2114
2116
- confirm_param_env_candidate ( selcx, obligation, predicate, false )
2115
+ confirm_param_env_candidate ( selcx, obligation, ty :: Binder :: dummy ( predicate) , false )
2117
2116
. with_addl_obligations ( nested)
2118
2117
. with_addl_obligations ( obligations)
2119
2118
}
@@ -2128,7 +2127,7 @@ fn confirm_future_candidate<'cx, 'tcx>(
2128
2127
else {
2129
2128
unreachable ! ( )
2130
2129
} ;
2131
- let coroutine_sig = args. as_coroutine ( ) . poly_sig ( ) ;
2130
+ let coroutine_sig = args. as_coroutine ( ) . sig ( ) ;
2132
2131
let Normalized { value : coroutine_sig, obligations } = normalize_with_depth (
2133
2132
selcx,
2134
2133
obligation. param_env ,
@@ -2142,22 +2141,21 @@ fn confirm_future_candidate<'cx, 'tcx>(
2142
2141
let tcx = selcx. tcx ( ) ;
2143
2142
let fut_def_id = tcx. require_lang_item ( LangItem :: Future , None ) ;
2144
2143
2145
- let predicate = super :: util:: future_trait_ref_and_outputs (
2144
+ let ( trait_ref , return_ty ) = super :: util:: future_trait_ref_and_outputs (
2146
2145
tcx,
2147
2146
fut_def_id,
2148
2147
obligation. predicate . self_ty ( ) ,
2149
2148
coroutine_sig,
2150
- )
2151
- . map_bound ( |( trait_ref, return_ty) | {
2152
- debug_assert_eq ! ( tcx. associated_item( obligation. predicate. def_id) . name, sym:: Output ) ;
2149
+ ) ;
2153
2150
2154
- ty:: ProjectionPredicate {
2155
- projection_ty : ty:: AliasTy :: new ( tcx, obligation. predicate . def_id , trait_ref. args ) ,
2156
- term : return_ty. into ( ) ,
2157
- }
2158
- } ) ;
2151
+ debug_assert_eq ! ( tcx. associated_item( obligation. predicate. def_id) . name, sym:: Output ) ;
2152
+
2153
+ let predicate = ty:: ProjectionPredicate {
2154
+ projection_ty : ty:: AliasTy :: new ( tcx, obligation. predicate . def_id , trait_ref. args ) ,
2155
+ term : return_ty. into ( ) ,
2156
+ } ;
2159
2157
2160
- confirm_param_env_candidate ( selcx, obligation, predicate, false )
2158
+ confirm_param_env_candidate ( selcx, obligation, ty :: Binder :: dummy ( predicate) , false )
2161
2159
. with_addl_obligations ( nested)
2162
2160
. with_addl_obligations ( obligations)
2163
2161
}
@@ -2172,7 +2170,7 @@ fn confirm_iterator_candidate<'cx, 'tcx>(
2172
2170
else {
2173
2171
unreachable ! ( )
2174
2172
} ;
2175
- let gen_sig = args. as_coroutine ( ) . poly_sig ( ) ;
2173
+ let gen_sig = args. as_coroutine ( ) . sig ( ) ;
2176
2174
let Normalized { value : gen_sig, obligations } = normalize_with_depth (
2177
2175
selcx,
2178
2176
obligation. param_env ,
@@ -2186,22 +2184,21 @@ fn confirm_iterator_candidate<'cx, 'tcx>(
2186
2184
let tcx = selcx. tcx ( ) ;
2187
2185
let iter_def_id = tcx. require_lang_item ( LangItem :: Iterator , None ) ;
2188
2186
2189
- let predicate = super :: util:: iterator_trait_ref_and_outputs (
2187
+ let ( trait_ref , yield_ty ) = super :: util:: iterator_trait_ref_and_outputs (
2190
2188
tcx,
2191
2189
iter_def_id,
2192
2190
obligation. predicate . self_ty ( ) ,
2193
2191
gen_sig,
2194
- )
2195
- . map_bound ( |( trait_ref, yield_ty) | {
2196
- debug_assert_eq ! ( tcx. associated_item( obligation. predicate. def_id) . name, sym:: Item ) ;
2192
+ ) ;
2197
2193
2198
- ty:: ProjectionPredicate {
2199
- projection_ty : ty:: AliasTy :: new ( tcx, obligation. predicate . def_id , trait_ref. args ) ,
2200
- term : yield_ty. into ( ) ,
2201
- }
2202
- } ) ;
2194
+ debug_assert_eq ! ( tcx. associated_item( obligation. predicate. def_id) . name, sym:: Item ) ;
2203
2195
2204
- confirm_param_env_candidate ( selcx, obligation, predicate, false )
2196
+ let predicate = ty:: ProjectionPredicate {
2197
+ projection_ty : ty:: AliasTy :: new ( tcx, obligation. predicate . def_id , trait_ref. args ) ,
2198
+ term : yield_ty. into ( ) ,
2199
+ } ;
2200
+
2201
+ confirm_param_env_candidate ( selcx, obligation, ty:: Binder :: dummy ( predicate) , false )
2205
2202
. with_addl_obligations ( nested)
2206
2203
. with_addl_obligations ( obligations)
2207
2204
}
0 commit comments