Skip to content

Commit b68d287

Browse files
committed
libsyntax: Fix long line
1 parent dc2f775 commit b68d287

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libsyntax/parse/parser.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2231,7 +2231,8 @@ impl parser {
22312231
self.expect(token::LBRACE);
22322232
let {inner, next} = maybe_parse_inner_attrs_and_next(self,
22332233
parse_attrs);
2234-
return (inner, self.parse_block_tail_(lo, if us { unsafe_blk } else { default_blk }, next));
2234+
let blk_check_mode = if us { unsafe_blk } else { default_blk };
2235+
return (inner, self.parse_block_tail_(lo, blk_check_mode, next));
22352236
}
22362237

22372238
fn parse_block_no_value() -> blk {

0 commit comments

Comments
 (0)