@@ -25,26 +25,26 @@ impl ByteRepr for Point {
2525}
2626pub fn agg_0 ( n : i32 ) -> i32 {
2727 let n: Value < i32 > = Rc :: new ( RefCell :: new ( n) ) ;
28- let mut buf40: Value < Box < [ u8 ] > > = Rc :: new ( RefCell :: new (
28+ let buf40: Value < Box < [ u8 ] > > = Rc :: new ( RefCell :: new (
2929 ( 0 ..40 ) . map ( |_| <u8 >:: default ( ) ) . collect :: < Box < [ u8 ] > > ( ) ,
3030 ) ) ;
31- let mut buf256: Value < Box < [ u8 ] > > = Rc :: new ( RefCell :: new (
31+ let buf256: Value < Box < [ u8 ] > > = Rc :: new ( RefCell :: new (
3232 ( 0 ..256 ) . map ( |_| <u8 >:: default ( ) ) . collect :: < Box < [ u8 ] > > ( ) ,
3333 ) ) ;
34- let mut arr64: Value < Box < [ i32 ] > > = Rc :: new ( RefCell :: new (
34+ let arr64: Value < Box < [ i32 ] > > = Rc :: new ( RefCell :: new (
3535 ( 0 ..64 ) . map ( |_| <i32 >:: default ( ) ) . collect :: < Box < [ i32 ] > > ( ) ,
3636 ) ) ;
37- let mut longs: Value < Box < [ i64 ] > > = Rc :: new ( RefCell :: new (
37+ let longs: Value < Box < [ i64 ] > > = Rc :: new ( RefCell :: new (
3838 ( 0 ..33 ) . map ( |_| <i64 >:: default ( ) ) . collect :: < Box < [ i64 ] > > ( ) ,
3939 ) ) ;
40- let mut p: Value < Point > = <Value < Point > >:: default ( ) ;
41- let mut ptr: Value < Ptr < i32 > > = Rc :: new ( RefCell :: new ( Ptr :: < i32 > :: null ( ) ) ) ;
42- let mut fp: Value < FnPtr < fn ( i32 ) -> i32 > > = Rc :: new ( RefCell :: new ( FnPtr :: null ( ) ) ) ;
43- let mut file: Value < Ptr < :: std:: fs:: File > > = Rc :: new ( RefCell :: new ( Ptr :: null ( ) ) ) ;
44- let mut total: Value < i32 > = <Value < i32 > >:: default ( ) ;
40+ let p: Value < Point > = <Value < Point > >:: default ( ) ;
41+ let ptr: Value < Ptr < i32 > > = Rc :: new ( RefCell :: new ( Ptr :: < i32 > :: null ( ) ) ) ;
42+ let fp: Value < FnPtr < fn ( i32 ) -> i32 > > = Rc :: new ( RefCell :: new ( FnPtr :: null ( ) ) ) ;
43+ let file: Value < Ptr < :: std:: fs:: File > > = Rc :: new ( RefCell :: new ( Ptr :: null ( ) ) ) ;
44+ let total: Value < i32 > = <Value < i32 > >:: default ( ) ;
4545 goto_block ! ( {
4646 ' __entry: {
47- total = Rc :: new ( RefCell :: new ( 0 ) ) ;
47+ * total. borrow_mut ( ) = 0 ;
4848 if ( ( ( ( * n. borrow( ) ) < 0 ) as i32 ) != 0 ) {
4949 goto!( ' out) ;
5050 }
0 commit comments