Account for doc comments coming from proc macros without spans#63930
Merged
bors merged 2 commits intorust-lang:masterfrom Sep 5, 2019
Merged
Account for doc comments coming from proc macros without spans#63930bors merged 2 commits intorust-lang:masterfrom
bors merged 2 commits intorust-lang:masterfrom
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
estebank
commented
Aug 27, 2019
| pub enum Boom { | ||
| /// [Oooops] | ||
| Bam, | ||
| } |
Contributor
Author
There was a problem hiding this comment.
This test doesn't actually test that the warning is emitted, but it does make sure we don't regress back to the ICE.
Contributor
Author
|
r? @Centril |
Contributor
|
I have never reviewed anything of importance in rustdoc. |
Contributor
|
Report from compiler triage meeting: Accepted for beta backport (once it lands) |
Contributor
Author
|
Ping @rust-lang/rustdoc? |
Member
|
Thanks! @bors: r+ |
Collaborator
|
📌 Commit 7ed542d has been approved by |
Centril
added a commit
to Centril/rust
that referenced
this pull request
Sep 4, 2019
Account for doc comments coming from proc macros without spans Fix rust-lang#63821.
bors
added a commit
that referenced
this pull request
Sep 4, 2019
Rollup of 10 pull requests Successful merges: - #63166 (Add Result::cloned{,_err} and Result::copied{,_err}) - #63930 (Account for doc comments coming from proc macros without spans) - #63985 (Stabilize pin_into_inner in 1.39.0) - #64023 (libstd fuchsia fixes) - #64030 (Fix unlock ordering in SGX synchronization primitives) - #64041 (use TokenStream rather than &[TokenTree] for built-in macros) - #64043 (Add some more tests for underscore imports) - #64092 (Update xLTO compatibility table in rustc book.) - #64120 (Move path parsing earlier) - #64123 (Added warning around code with reference to uninit bytes) Failed merges: r? @ghost
Centril
added a commit
to Centril/rust
that referenced
this pull request
Sep 5, 2019
Account for doc comments coming from proc macros without spans Fix rust-lang#63821.
Centril
added a commit
to Centril/rust
that referenced
this pull request
Sep 5, 2019
Account for doc comments coming from proc macros without spans Fix rust-lang#63821.
Centril
added a commit
to Centril/rust
that referenced
this pull request
Sep 5, 2019
Account for doc comments coming from proc macros without spans Fix rust-lang#63821.
bors
added a commit
that referenced
this pull request
Sep 5, 2019
Rollup of 11 pull requests Successful merges: - #62848 (Use unicode-xid crate instead of libcore) - #63774 (Fix `window.hashchange is not a function`) - #63930 (Account for doc comments coming from proc macros without spans) - #64003 (place: Passing `align` = `layout.align.abi`, when also passing `layout`) - #64030 (Fix unlock ordering in SGX synchronization primitives) - #64041 (use TokenStream rather than &[TokenTree] for built-in macros) - #64051 (Add x86_64-linux-kernel target) - #64063 (Fix const_err with `-(-0.0)`) - #64083 (Point at appropriate arm on type error on if/else/match with one non-! arm) - #64100 (Fix const eval bug breaking run-pass tests in Miri) - #64157 (Opaque type locations in error message for clarity.) Failed merges: r? @ghost
bors
added a commit
that referenced
this pull request
Sep 14, 2019
[beta] Rollup backports Cherry-picked: - Permit unwinding through FFI by default #62603 - pprust: Do not print spaces before some tokens #63897 - Account for doc comments coming from proc macros without spans #63930 - Support "soft" feature-gating using a lint #64066 - Update xLTO compatibility table in rustc book. #64092 - Include compiler-rt in the source tarball #64240 - Update LLVM submodule #64317 r? @Mark-Simulacrum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix #63821.