@@ -1151,10 +1151,9 @@ impl<'a> LoweringContext<'a> {
11511151
11521152 fn lower_ty_binding ( & mut self , b : & TypeBinding ,
11531153 itctx : ImplTraitContext < ' _ > ) -> hir:: TypeBinding {
1154- let LoweredNodeId { node_id, hir_id } = self . lower_node_id ( b. id ) ;
1154+ let LoweredNodeId { node_id : _ , hir_id } = self . lower_node_id ( b. id ) ;
11551155
11561156 hir:: TypeBinding {
1157- id : node_id,
11581157 hir_id,
11591158 ident : b. ident ,
11601159 ty : self . lower_ty ( & b. ty , itctx) ,
@@ -1982,14 +1981,13 @@ impl<'a> LoweringContext<'a> {
19821981 let LoweredNodeId { node_id : _, hir_id } = this. next_id ( ) ;
19831982 hir:: Ty { node : hir:: TyKind :: Tup ( tys) , hir_id, span }
19841983 } ;
1985- let LoweredNodeId { node_id, hir_id } = this. next_id ( ) ;
1984+ let LoweredNodeId { node_id : _ , hir_id } = this. next_id ( ) ;
19861985
19871986 (
19881987 hir:: GenericArgs {
19891988 args : hir_vec ! [ GenericArg :: Type ( mk_tup( this, inputs, span) ) ] ,
19901989 bindings : hir_vec ! [
19911990 hir:: TypeBinding {
1992- id: node_id,
19931991 hir_id,
19941992 ident: Ident :: from_str( FN_OUTPUT_NAME ) ,
19951993 ty: output
@@ -2326,13 +2324,12 @@ impl<'a> LoweringContext<'a> {
23262324 } ;
23272325
23282326 // "<Output = T>"
2329- let LoweredNodeId { node_id, hir_id } = this. next_id ( ) ;
2327+ let LoweredNodeId { node_id : _ , hir_id } = this. next_id ( ) ;
23302328 let future_params = P ( hir:: GenericArgs {
23312329 args : hir_vec ! [ ] ,
23322330 bindings : hir_vec ! [ hir:: TypeBinding {
23332331 ident: Ident :: from_str( FN_OUTPUT_NAME ) ,
23342332 ty: output_ty,
2335- id: node_id,
23362333 hir_id,
23372334 span,
23382335 } ] ,
0 commit comments