Skip to content

Commit ce71137

Browse files
committed
Explicitly call emit_stashed_diagnostics.
Commit 72b172b in #121206 changed things so that `emit_stashed_diagnostics` is only called from `run_compiler`. But rustfmt doesn't use `run_compiler`, so it needs to call `emit_stashed_diagnostics` itself to avoid an abort in `DiagCtxtInner::drop` when stashed diagnostics occur. Fixes #121450.
1 parent 163c3eb commit ce71137

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

src/parse/parser.rs

+13-5
Original file line numberDiff line numberDiff line change
@@ -163,13 +163,21 @@ impl<'a> Parser<'a> {
163163
fn parse_crate_mod(&mut self) -> Result<ast::Crate, ParserError> {
164164
let mut parser = AssertUnwindSafe(&mut self.parser);
165165

166-
match catch_unwind(move || parser.parse_crate_mod()) {
167-
Ok(Ok(k)) => Ok(k),
168-
Ok(Err(db)) => {
166+
// rustfmt doesn't use `run_compiler` like other tools, so it must emit
167+
// any stashed diagnostics itself, otherwise the `DiagCtxt` will assert
168+
// when dropped. The final result here combines the parsing result and
169+
// the `emit_stashed_diagnostics` result.
170+
let parse_res = catch_unwind(move || parser.parse_crate_mod());
171+
let stashed_res = self.parser.dcx().emit_stashed_diagnostics();
172+
let err = Err(ParserError::ParsePanicError);
173+
match (parse_res, stashed_res) {
174+
(Ok(Ok(k)), None) => Ok(k),
175+
(Ok(Ok(_)), Some(_guar)) => err,
176+
(Ok(Err(db)), _) => {
169177
db.emit();
170-
Err(ParserError::ParseError)
178+
err
171179
}
172-
Err(_) => Err(ParserError::ParsePanicError),
180+
(Err(_), _) => err,
173181
}
174182
}
175183
}

src/test/parser.rs

+7
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,10 @@ fn crate_parsing_errors_on_unclosed_delims() {
5555
let filename = "tests/parser/unclosed-delims/issue_4466.rs";
5656
assert_parser_error(filename);
5757
}
58+
59+
#[test]
60+
fn crate_parsing_stashed_diag() {
61+
// See also https://github.com/rust-lang/rust/issues/121450
62+
let filename = "tests/parser/stashed-diag.rs";
63+
assert_parser_error(filename);
64+
}

tests/parser/stashed-diag.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#![u={static N;}]
2+
3+
fn main() {}

0 commit comments

Comments
 (0)