Skip to content

Commit 53608be

Browse files
fix bad merge conflict resolution
1 parent 97b7874 commit 53608be

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/tools/rustfmt/src/parse/macros/lazy_static.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@ pub(crate) fn parse_lazy_static(
2626
Err(err) => {
2727
err.cancel();
2828
parser.psess.dcx().reset_err_count();
29+
return None;
2930
}
30-
31+
}
32+
}
33+
}
3134
while parser.token.kind != TokenKind::Eof {
3235
// Parse a `lazy_static!` item.
3336
let vis = parse_or!(parse_visibility, rustc_parse::parser::FollowedByType::No);

0 commit comments

Comments
 (0)