@@ -7,7 +7,7 @@ use rustc_ast::LitIntType;
7
7
use rustc_data_structures:: fx:: FxHashMap ;
8
8
use rustc_hir as hir;
9
9
use rustc_hir:: {
10
- ArrayLen , BindingAnnotation , Closure , ExprKind , FnRetTy , HirId , Lit , PatKind , QPath , StmtKind , TyKind ,
10
+ ArrayLen , BindingAnnotation , Closure , ExprKind , FnRetTy , HirId , Lit , PatKind , QPath , StmtKind , TyKind , CaptureBy
11
11
} ;
12
12
use rustc_lint:: { LateContext , LateLintPass , LintContext } ;
13
13
use rustc_session:: declare_lint_pass;
@@ -479,6 +479,11 @@ impl<'a, 'tcx> PrintVisitor<'a, 'tcx> {
479
479
movability,
480
480
..
481
481
} ) => {
482
+ let capture_clause = match capture_clause {
483
+ CaptureBy :: Value { .. } => "Value { .. }" ,
484
+ CaptureBy :: Ref => "Ref" ,
485
+ } ;
486
+
482
487
let movability = OptionPat :: new ( movability. map ( |m| format ! ( "Movability::{m:?}" ) ) ) ;
483
488
484
489
let ret_ty = match fn_decl. output {
@@ -487,7 +492,7 @@ impl<'a, 'tcx> PrintVisitor<'a, 'tcx> {
487
492
} ;
488
493
489
494
bind ! ( self , fn_decl, body_id) ;
490
- kind ! ( "Closure(CaptureBy::{capture_clause:? }, {fn_decl}, {body_id}, _, {movability})" ) ;
495
+ kind ! ( "Closure(CaptureBy::{capture_clause}, {fn_decl}, {body_id}, _, {movability})" ) ;
491
496
chain ! ( self , "let {ret_ty} = {fn_decl}.output" ) ;
492
497
self . body ( body_id) ;
493
498
} ,
0 commit comments