File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3325,11 +3325,11 @@ impl Rewrite for ast::ForeignItem {
3325
3325
. map ( |( s, _, _) | format ! ( "{};" , s) )
3326
3326
}
3327
3327
}
3328
- ast:: ForeignItemKind :: Static ( ref ty , mutability , _ ) => {
3328
+ ast:: ForeignItemKind :: Static ( ref static_foreign_item ) => {
3329
3329
// FIXME(#21): we're dropping potential comments in between the
3330
3330
// function kw here.
3331
3331
let vis = format_visibility ( context, & self . vis ) ;
3332
- let mut_str = format_mutability ( mutability) ;
3332
+ let mut_str = format_mutability ( static_foreign_item . mutability ) ;
3333
3333
let prefix = format ! (
3334
3334
"{}static {}{}:" ,
3335
3335
vis,
@@ -3340,7 +3340,7 @@ impl Rewrite for ast::ForeignItem {
3340
3340
rewrite_assign_rhs (
3341
3341
context,
3342
3342
prefix,
3343
- & * * ty,
3343
+ & static_foreign_item . ty ,
3344
3344
& RhsAssignKind :: Ty ,
3345
3345
shape. sub_width ( 1 ) ?,
3346
3346
)
You can’t perform that action at this time.
0 commit comments