File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -465,7 +465,7 @@ impl EmitterWriter {
465465 span : & mut MultiSpan ,
466466 children : & mut Vec < SubDiagnostic > ) {
467467 let mut spans_updated = self . fix_multispan_in_std_macros ( span) ;
468- for child in & mut children. iter_mut ( ) {
468+ for child in children. iter_mut ( ) {
469469 spans_updated |= self . fix_multispan_in_std_macros ( & mut child. span ) ;
470470 }
471471 if spans_updated {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ error[E0308]: mismatched types
4426 | $arr.len() * size_of($arr[0]));
55 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected u64, found usize
66...
7- 38 | write!(hello);
7+ 37 | write!(hello);
88 | -------------- in this macro invocation
99
1010error: non-scalar cast: `{integer}` as `()`
@@ -13,7 +13,7 @@ error: non-scalar cast: `{integer}` as `()`
131332 | ($x:expr) => ($x as ())
1414 | ^^^^^^^^
1515...
16- 39 | cast!(2);
16+ 38 | cast!(2);
1717 | --------- in this macro invocation
1818
1919error: aborting due to 2 previous errors
You can’t perform that action at this time.
0 commit comments