@@ -10,8 +10,8 @@ use std::process;
1010
1111use either:: Either ;
1212use rand:: rngs:: StdRng ;
13- use rand:: SeedableRng ;
1413use rand:: Rng ;
14+ use rand:: SeedableRng ;
1515
1616use rustc_ast:: ast:: Mutability ;
1717use rustc_data_structures:: fx:: { FxHashMap , FxHashSet } ;
@@ -83,7 +83,8 @@ pub struct FrameExtra<'tcx> {
8383impl < ' tcx > std:: fmt:: Debug for FrameExtra < ' tcx > {
8484 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
8585 // Omitting `timing`, it does not support `Debug`.
86- let FrameExtra { borrow_tracker, catch_unwind, timing : _, is_user_relevant : _, salt : _ } = self ;
86+ let FrameExtra { borrow_tracker, catch_unwind, timing : _, is_user_relevant : _, salt : _ } =
87+ self ;
8788 f. debug_struct ( "FrameData" )
8889 . field ( "borrow_tracker" , borrow_tracker)
8990 . field ( "catch_unwind" , catch_unwind)
@@ -93,7 +94,8 @@ impl<'tcx> std::fmt::Debug for FrameExtra<'tcx> {
9394
9495impl VisitProvenance for FrameExtra < ' _ > {
9596 fn visit_provenance ( & self , visit : & mut VisitWith < ' _ > ) {
96- let FrameExtra { catch_unwind, borrow_tracker, timing : _, is_user_relevant : _, salt : _ } = self ;
97+ let FrameExtra { catch_unwind, borrow_tracker, timing : _, is_user_relevant : _, salt : _ } =
98+ self ;
9799
98100 catch_unwind. visit_provenance ( visit) ;
99101 borrow_tracker. visit_provenance ( visit) ;
0 commit comments