@@ -1151,10 +1151,9 @@ impl<'a> LoweringContext<'a> {
1151
1151
1152
1152
fn lower_ty_binding ( & mut self , b : & TypeBinding ,
1153
1153
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 ) ;
1155
1155
1156
1156
hir:: TypeBinding {
1157
- id : node_id,
1158
1157
hir_id,
1159
1158
ident : b. ident ,
1160
1159
ty : self . lower_ty ( & b. ty , itctx) ,
@@ -1982,14 +1981,13 @@ impl<'a> LoweringContext<'a> {
1982
1981
let LoweredNodeId { node_id : _, hir_id } = this. next_id ( ) ;
1983
1982
hir:: Ty { node : hir:: TyKind :: Tup ( tys) , hir_id, span }
1984
1983
} ;
1985
- let LoweredNodeId { node_id, hir_id } = this. next_id ( ) ;
1984
+ let LoweredNodeId { node_id : _ , hir_id } = this. next_id ( ) ;
1986
1985
1987
1986
(
1988
1987
hir:: GenericArgs {
1989
1988
args : hir_vec ! [ GenericArg :: Type ( mk_tup( this, inputs, span) ) ] ,
1990
1989
bindings : hir_vec ! [
1991
1990
hir:: TypeBinding {
1992
- id: node_id,
1993
1991
hir_id,
1994
1992
ident: Ident :: from_str( FN_OUTPUT_NAME ) ,
1995
1993
ty: output
@@ -2326,13 +2324,12 @@ impl<'a> LoweringContext<'a> {
2326
2324
} ;
2327
2325
2328
2326
// "<Output = T>"
2329
- let LoweredNodeId { node_id, hir_id } = this. next_id ( ) ;
2327
+ let LoweredNodeId { node_id : _ , hir_id } = this. next_id ( ) ;
2330
2328
let future_params = P ( hir:: GenericArgs {
2331
2329
args : hir_vec ! [ ] ,
2332
2330
bindings : hir_vec ! [ hir:: TypeBinding {
2333
2331
ident: Ident :: from_str( FN_OUTPUT_NAME ) ,
2334
2332
ty: output_ty,
2335
- id: node_id,
2336
2333
hir_id,
2337
2334
span,
2338
2335
} ] ,
0 commit comments