diff options
| author | Michael Howell <michael@notriddle.com> | 2021-11-22 19:47:58 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2021-11-22 19:47:58 -0700 |
| commit | bff1645bdbe82157b90907239ef651f4b8d41f84 (patch) | |
| tree | f015a66fb4d735e722180a3828a72f70c22b494d /compiler/rustc_parse | |
| parent | 214ad2f5b5ff529548ce13dabcda8d5841df0bd7 (diff) | |
| download | rust-bff1645bdbe82157b90907239ef651f4b8d41f84.tar.gz rust-bff1645bdbe82157b90907239ef651f4b8d41f84.zip | |
fix(doctest): detect extern crate items in statement doctests
This partially reverts #91026, because rustdoc needs to detect the extern statements, even when they appear inside implicit `main()`. It does not entirely revert it, so the old bug is still fixed, by duplicating some of the logic from `parse_mod` instead of trying to use it directly. Fixes #91134
Diffstat (limited to 'compiler/rustc_parse')
| -rw-r--r-- | compiler/rustc_parse/src/parser/diagnostics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/diagnostics.rs b/compiler/rustc_parse/src/parser/diagnostics.rs index 81328e09156..17e79a02360 100644 --- a/compiler/rustc_parse/src/parser/diagnostics.rs +++ b/compiler/rustc_parse/src/parser/diagnostics.rs @@ -1121,7 +1121,7 @@ impl<'a> Parser<'a> { Ok(P(T::recovered(Some(QSelf { ty, path_span, position: 0 }), path))) } - pub(super) fn maybe_consume_incorrect_semicolon(&mut self, items: &[P<Item>]) -> bool { + pub fn maybe_consume_incorrect_semicolon(&mut self, items: &[P<Item>]) -> bool { if self.eat(&token::Semi) { let mut err = self.struct_span_err(self.prev_token.span, "expected item, found `;`"); err.span_suggestion_short( |
